diff --git a/src/App.tsx b/src/App.tsx index 5d6c2db..9789ab8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -26,10 +26,10 @@ const App = () => { - {/**/} - {/* */} - {/**/} - + + + + {/**/} diff --git a/src/components/MediaOverlay.tsx b/src/components/MediaOverlay.tsx index 004276f..47cebe3 100644 --- a/src/components/MediaOverlay.tsx +++ b/src/components/MediaOverlay.tsx @@ -202,7 +202,10 @@ const MediaOverlay = () => { - + + + + diff --git a/src/components/StateManagers/ActiveMediaElementStateManager.tsx b/src/components/StateManagers/ActiveMediaElementStateManager.tsx new file mode 100644 index 0000000..0e6c774 --- /dev/null +++ b/src/components/StateManagers/ActiveMediaElementStateManager.tsx @@ -0,0 +1,56 @@ +import React, { useCallback, useEffect } from "react"; +import { useMediaStore } from "../../store"; +import { StateManagerProps } from "./EventStateManager"; +import media_scene_directions from "../../resources/media_scene_directions.json"; + +const ActiveMediaElementStateManager = (props: StateManagerProps) => { + const setActiveMediaElement = useMediaStore( + (state) => state.setActiveMediaElement + ); + + const dispatchObject = useCallback( + (event: string, targetMediaElement: string) => { + const dispatcherObjects = { + setActivePlay: { + action: setActiveMediaElement, + value: targetMediaElement, + }, + setActiveExit: { + action: setActiveMediaElement, + value: targetMediaElement, + }, + }; + + return dispatcherObjects[event as keyof typeof dispatcherObjects]; + }, + [] + ); + + useEffect(() => { + if (props.eventState) { + const eventObject = + media_scene_directions[ + props.eventState as keyof typeof media_scene_directions + ]; + + if (eventObject) { + const eventAction = eventObject.action; + + const targetMediaElement = eventObject.target_media_element; + + const dispatchedObject = dispatchObject( + eventAction, + targetMediaElement + ); + + if (dispatchedObject) { + dispatchedObject.action(dispatchedObject.value); + } + } + } + }, [props.eventState, dispatchObject]); + + return null; +}; + +export default ActiveMediaElementStateManager; diff --git a/src/components/StateManagers/EventStateManager.tsx b/src/components/StateManagers/EventStateManager.tsx index 80afe3e..48cda6e 100644 --- a/src/components/StateManagers/EventStateManager.tsx +++ b/src/components/StateManagers/EventStateManager.tsx @@ -8,6 +8,7 @@ import YellowTextStateManager from "./YellowTextStateManager"; import { useBlueOrbStore, useMediaStore } from "../../store"; import MediaSceneStateManager from "./MediaSceneStateManager"; import GreenTextStateManager from "./GreenTextStateManager"; +import ActiveMediaElementStateManager from "./ActiveMediaElementStateManager"; const getKeyCodeAssociation = (keyCode: number): string => { const keyCodeAssocs = { @@ -24,6 +25,16 @@ export type StateManagerProps = { eventState: string; }; +export type EventObject = { + action: string; + + target_blue_orb_id?: string; + target_hud_id?: string; + target_media_element?: string; + target_media_element_text?: string; + target_media_element_text_position?: number[]; +}; + const EventStateManager = () => { const [eventState, setEventState] = useState(); const activeBlueOrb = useBlueOrbStore((state) => state.blueOrbId); @@ -44,7 +55,7 @@ const EventStateManager = () => { // from blue_orb_directions.json file. // const eventId = `${activeBlueOrb}_${keyPress}`; // - const eventId = `${activeBlueOrb}_${keyPress}`; + const eventId = `${activeMediaElement}_${keyPress}`; setEventState(eventId); } }, @@ -68,7 +79,7 @@ const EventStateManager = () => { - + ); }; diff --git a/src/components/StateManagers/GreenTextStateManager.tsx b/src/components/StateManagers/GreenTextStateManager.tsx index 26c772e..6fb9da2 100644 --- a/src/components/StateManagers/GreenTextStateManager.tsx +++ b/src/components/StateManagers/GreenTextStateManager.tsx @@ -22,7 +22,7 @@ const GreenTextStateManager = (props: StateManagerProps) => { toggleGreenText(); }, delay); }, - [] + [setGreenText, toggleGreenText] ); const dispatchObject = useCallback( diff --git a/src/components/StateManagers/YellowTextStateManager.tsx b/src/components/StateManagers/YellowTextStateManager.tsx index 53efac5..ea54bd5 100644 --- a/src/components/StateManagers/YellowTextStateManager.tsx +++ b/src/components/StateManagers/YellowTextStateManager.tsx @@ -3,6 +3,8 @@ import blue_orb_huds from "../../resources/blue_orb_huds.json"; import site_a from "../../resources/site_a.json"; import { useTextRendererStore } from "../../store"; import blue_orb_directions from "../../resources/blue_orb_directions.json"; +import media_scene_directions from "../../resources/media_scene_directions.json"; +import { EventObject } from "./EventStateManager"; type AnimateYellowTextWithMove = ( yellowLetterPosYOffset: number, @@ -15,8 +17,16 @@ type AnimateYellowTextWithoutMove = ( targetBlueOrbId: string ) => void; +type AnimateMediaYellowText = ( + targetMediaText: string, + targetMediaTextPos: number[] +) => void; + type YellowTextDispatchData = { - action: AnimateYellowTextWithMove | AnimateYellowTextWithoutMove; + action: + | AnimateYellowTextWithMove + | AnimateYellowTextWithoutMove + | AnimateMediaYellowText; value: any; }; @@ -26,6 +36,8 @@ type YellowTextDispatcher = { moveLeft: YellowTextDispatchData; moveRight: YellowTextDispatchData; changeBlueOrbFocus: YellowTextDispatchData; + setActivePlay: YellowTextDispatchData; + setActiveExit: YellowTextDispatchData; }; const YellowTextStateManager = (props: any) => { @@ -125,8 +137,41 @@ const YellowTextStateManager = (props: any) => { ] ); + const animateMediaYellowText: AnimateMediaYellowText = useCallback( + (targetMediaElementText: string, targetMediaElementTextPos: number[]) => { + // make current text shrink + setYellowTextOffsetXCoeff(-1); + + setTimeout(() => { + setYellowTextPosX(targetMediaElementTextPos[0]); + setYellowTextPosY(targetMediaElementTextPos[1]); + }, 400); + + setTimeout(() => { + setYellowText(targetMediaElementText); + }, 1000); + + setTimeout(() => { + // unshrink text + setYellowTextOffsetXCoeff(0); + }, 1200); + }, + [ + setYellowText, + setYellowTextOffsetXCoeff, + setYellowTextPosX, + setYellowTextPosY, + ] + ); + const dispatchObject = useCallback( - (event: string, targetBlueOrbHudId: string, targetBlueOrbId: string) => { + ( + event: string, + targetBlueOrbHudId: string | undefined, + targetBlueOrbId: string | undefined, + targetMediaElementText: string | undefined, + targetMediaElementTextPos: number[] | undefined + ) => { const dispatcherObjects: YellowTextDispatcher = { moveUp: { action: animateYellowTextWithMove, @@ -148,29 +193,53 @@ const YellowTextStateManager = (props: any) => { action: animateYellowTextWithoutMove, value: [targetBlueOrbHudId, targetBlueOrbId], }, + setActivePlay: { + action: animateMediaYellowText, + value: [targetMediaElementText, targetMediaElementTextPos], + }, + setActiveExit: { + action: animateMediaYellowText, + value: [targetMediaElementText, targetMediaElementTextPos], + }, }; return dispatcherObjects[event as keyof typeof dispatcherObjects]; }, - [animateYellowTextWithMove, animateYellowTextWithoutMove] + [ + animateYellowTextWithMove, + animateYellowTextWithoutMove, + animateMediaYellowText, + ] ); useEffect(() => { if (props.eventState) { - const eventObject = + const eventObject: EventObject = blue_orb_directions[ props.eventState as keyof typeof blue_orb_directions + ] || + media_scene_directions[ + props.eventState as keyof typeof media_scene_directions ]; if (eventObject) { const eventAction = eventObject.action; + + // main scene specific const targetBlueOrbId = eventObject.target_blue_orb_id; const targetBlueOrbHudId = eventObject.target_hud_id; + // media scene specific + const targetMediaElementText = eventObject.target_media_element_text; + const targetMediaElementTextPos = + eventObject.target_media_element_text_position; + const dispatchedObject = dispatchObject( eventAction, targetBlueOrbHudId, - targetBlueOrbId + targetBlueOrbId, + targetMediaElementText, + targetMediaElementTextPos ); if (dispatchedObject) { diff --git a/src/components/TextRenderer/BigLetter.tsx b/src/components/TextRenderer/BigLetter.tsx index 48a4b52..98d8f67 100644 --- a/src/components/TextRenderer/BigLetter.tsx +++ b/src/components/TextRenderer/BigLetter.tsx @@ -2,7 +2,7 @@ import orangeFont from "../../static/sprite/orange_font_texture.png"; import yellowFont from "../../static/sprite/yellow_font_texture.png"; import * as THREE from "three"; import { useLoader } from "react-three-fiber"; -import orange_font_json from "../../resources/orange_font.json"; +import orange_font_json from "../../resources/big_font.json"; import { a, useSpring } from "@react-spring/three"; import React, { useMemo } from "react"; import { LetterProps } from "./TextRenderer"; @@ -48,7 +48,7 @@ const BigLetter = (props: BigLetterProps) => { const lineYOffsets = { 1: 0.884, 2: 0.765, - 3: 0.65, + 3: 0.648, 4: 0.47, }; @@ -70,14 +70,13 @@ const BigLetter = (props: BigLetterProps) => { v = (v * letterData[3]) / 136 + - letterData[4] / 136 + - lineYOffsets[getLineNum(props.letter) as keyof typeof lineYOffsets] - + lineYOffsets[getLineNum(props.letter)] - letterData[4] / 136; uvAttribute.setXY(i, u, v); } return geometry; - }, []); + }, [letterData, lineYOffsets, props.letter]); const textRendererState = useSpring({ letterOffsetXCoeff: @@ -92,8 +91,8 @@ const BigLetter = (props: BigLetterProps) => { return ( diff --git a/src/components/TextRenderer/MediumLetter.tsx b/src/components/TextRenderer/MediumLetter.tsx index 285fa22..5c0d2cc 100644 --- a/src/components/TextRenderer/MediumLetter.tsx +++ b/src/components/TextRenderer/MediumLetter.tsx @@ -60,7 +60,6 @@ const MediumLetter = (props: LetterProps) => { v = (v * letterData[3]) / 136 + - letterData[4] / 136 + lineYOffsets[getLineNum(props.letter)] - letterData[4] / 136; @@ -73,6 +72,7 @@ const MediumLetter = (props: LetterProps) => { return ( { // ==================================== GREEN TEXT ============================================ const greenText = useTextRendererStore((state) => state.greenText); - const greenTextArr = useMemo(() => greenText.split(""), []); + const greenTextArr = useMemo(() => greenText.split(""), [greenText]); const greenTextActive = useTextRendererStore( (state) => state.greenTextActive ); diff --git a/src/resources/orange_font.json b/src/resources/big_font.json similarity index 96% rename from src/resources/orange_font.json rename to src/resources/big_font.json index ba1fd62..2ac4a0d 100644 --- a/src/resources/orange_font.json +++ b/src/resources/big_font.json @@ -47,10 +47,10 @@ "f": [90, 34, 9, 14, 3], "g": [100, 34, 11, 17, 0], "h": [112, 34, 11, 14, 0], - "i": [125, 34, 4, 14, 0], + "i": [123, 34, 7, 14, 0], "j": [132, 34, 7, 17, 3], "k": [140, 34, 11, 14, 0], - "l": [153, 34, 4, 14, 0], + "l": [152, 34, 7, 15, 0], "m": [160, 34, 14, 14, 0], "n": [176, 34, 11, 14, 0], "o": [188, 34, 12, 14, 0], @@ -63,7 +63,7 @@ "v": [22, 58, 13, 14, 0], "w": [36, 58, 17, 14, 0], "x": [54, 58, 11, 14, 0], - "y": [66, 58, 13, 17, 3], + "y": [65, 58, 13, 14, 3], "z": [80, 58, 10, 14, 0], ",": [92, 58, 5, 16, 2], ".": [100, 58, 5, 14, 0], diff --git a/src/resources/media_scene_directions.json b/src/resources/media_scene_directions.json index dfc1145..8c8b2ae 100644 --- a/src/resources/media_scene_directions.json +++ b/src/resources/media_scene_directions.json @@ -1,14 +1,14 @@ { "play_down": { - "action": "setActiveMediaElement", + "action": "setActivePlay", "target_media_element": "exit", "target_media_element_text": "Exit", - "target_media_element_text_position": [-3.5, -1.6, 0.6] + "target_media_element_text_position": [-0.8, -0.08, 0.6] }, "exit_up": { - "action": "setActiveMediaElement", + "action": "setActiveExit", "target_media_element": "play", "target_media_element_text": "Play", - "target_media_element_text_position": [-2.7, -0.9, 0.6] + "target_media_element_text_position": [-0.8, 0.05, 0.6] } } diff --git a/src/resources/site_a.json b/src/resources/site_a.json index f655814..629b175 100644 --- a/src/resources/site_a.json +++ b/src/resources/site_a.json @@ -1,12018 +1,12017 @@ { - "0100": { - "SLPS_016_0x offset": "428584", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "266", - "2": "665", - "3": "677" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[31]", - "node_name": "Tda001", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "281", - "2": "383", - "3": "201" - } - }, - "0101": { - "SLPS_016_0x offset": "428624", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "666", - "2": "592", - "3": "192" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[0]", - "node_name": "Tda002", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "426", - "upgrade_requirement": "0", - "words": { - "1": "384", - "2": "43", - "3": "371" - } - }, - "0104": { - "SLPS_016_0x offset": "411864", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F013.STR", - "node_name": "Dc1009", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "24", - "2": "25", - "3": "26" - } - }, - "0109": { - "SLPS_016_0x offset": "428664", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "462", - "2": "678", - "3": "679" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[1]", - "node_name": "Tda003", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "426", - "upgrade_requirement": "0", - "words": { - "1": "270", - "2": "385", - "3": "386" - } - }, - "0110": { - "SLPS_016_0x offset": "428704", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "463", - "2": "204", - "3": "450" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[2]", - "node_name": "Tda004", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "428", - "upgrade_requirement": "0", - "words": { - "1": "123", - "2": "383", - "3": "387" - } - }, - "0112": { - "SLPS_016_0x offset": "432264", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[11]", - "node_name": "TaK001", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "127", - "2": "-1", - "3": "-1" - } - }, - "0114": { - "SLPS_016_0x offset": "432304", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[12]", - "node_name": "TaK002", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "8", - "2": "-1", - "3": "-1" - } - }, - "0116": { - "SLPS_016_0x offset": "418064", - "green_text": "", - "image_table_indices": { - "1": "680", - "2": "692", - "3": "682" - }, - "is_hidden": "35", - "media_file": "LAIN03.XA[3]", - "node_name": "Ekm001", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "14", - "4": "3" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "73", - "2": "49", - "3": "48" - } - }, - "0118": { - "SLPS_016_0x offset": "428744", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "467", - "2": "454", - "3": "205" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[3]", - "node_name": "Tda005", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "429", - "upgrade_requirement": "0", - "words": { - "1": "46", - "2": "206", - "3": "388" - } - }, - "0119": { - "SLPS_016_0x offset": "428784", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "468", - "2": "38", - "3": "206" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[4]", - "node_name": "Tda006", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "430", - "upgrade_requirement": "0", - "words": { - "1": "371", - "2": "5", - "3": "311" - } - }, - "0120": { - "SLPS_016_0x offset": "432344", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[13]", - "node_name": "TaK003", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "92", - "2": "-1", - "3": "-1" - } - }, - "0121": { - "SLPS_016_0x offset": "432384", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[14]", - "node_name": "TaK004", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "405", - "2": "-1", - "3": "-1" - } - }, - "0123": { - "SLPS_016_0x offset": "432424", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[15]", - "node_name": "TaK005", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "312", - "2": "-1", - "3": "-1" - } - }, - "01?": { - "SLPS_016_0x offset": "418664", - "green_text": "", - "image_table_indices": { - "1": "402", - "2": "397", - "3": "416" - }, - "is_hidden": "3", - "media_file": "LAIN13.XA[28]", - "node_name": "Env012", - "protocol_lines": { - "1": "20", - "2": "21", - "3": "22", - "4": "32" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0201": { - "SLPS_016_0x offset": "418104", - "green_text": "", - "image_table_indices": { - "1": "693", - "2": "628", - "3": "694" - }, - "is_hidden": "32", - "media_file": "LAIN03.XA[4]", - "node_name": "Ekm002", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "15", - "4": "3" - }, - "site": "A", - "type": "6", - "unlocked_by": "163", - "upgrade_requirement": "0", - "words": { - "1": "247", - "2": "248", - "3": "123" - } - }, - "0202": { - "SLPS_016_0x offset": "411904", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F014.STR", - "node_name": "Dc1010", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "27", - "2": "28", - "3": "29" - } - }, - "0203": { - "SLPS_016_0x offset": "428824", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "469", - "2": "211", - "3": "39" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[5]", - "node_name": "Tda007", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "431", - "upgrade_requirement": "0", - "words": { - "1": "23", - "2": "161", - "3": "291" - } - }, - "0204": { - "SLPS_016_0x offset": "428864", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "488", - "2": "475", - "3": "40" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[6]", - "node_name": "Tda008", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "432", - "upgrade_requirement": "0", - "words": { - "1": "389", - "2": "334", - "3": "390" - } - }, - "0205": { - "SLPS_016_0x offset": "432464", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[16]", - "node_name": "TaK006", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "305", - "2": "-1", - "3": "-1" - } - }, - "0206": { - "SLPS_016_0x offset": "437144", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[6]", - "node_name": "TaK123", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "67", - "2": "-1", - "3": "-1" - } - }, - "0207": { - "SLPS_016_0x offset": "437104", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[5]", - "node_name": "TaK122", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "394", - "2": "-1", - "3": "-1" - } - }, - "0208": { - "SLPS_016_0x offset": "432544", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN09.XA[18]", - "node_name": "TaK008", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "371", - "2": "-1", - "3": "-1" - } - }, - "0209": { - "SLPS_016_0x offset": "437184", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[7]", - "node_name": "TaK124", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "20", - "2": "-1", - "3": "-1" - } - }, - "0210": { - "SLPS_016_0x offset": "418144", - "green_text": "", - "image_table_indices": { - "1": "188", - "2": "174", - "3": "178" - }, - "is_hidden": "32", - "media_file": "LAIN03.XA[5]", - "node_name": "Ekm003", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "16", - "4": "3" - }, - "site": "A", - "type": "6", - "unlocked_by": "164", - "upgrade_requirement": "0", - "words": { - "1": "249", - "2": "250", - "3": "240" - } - }, - "0211": { - "SLPS_016_0x offset": "432584", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN09.XA[19]", - "node_name": "TaK009", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "190", - "2": "-1", - "3": "-1" - } - }, - "0212": { - "SLPS_016_0x offset": "428904", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "496", - "2": "41", - "3": "487" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[7]", - "node_name": "Tda009", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "433", - "upgrade_requirement": "0", - "words": { - "1": "160", - "2": "391", - "3": "158" - } - }, - "0213": { - "SLPS_016_0x offset": "428944", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "594", - "2": "245", - "3": "498" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[8]", - "node_name": "Tda010", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "434", - "upgrade_requirement": "0", - "words": { - "1": "67", - "2": "392", - "3": "262" - } - }, - "0215": { - "SLPS_016_0x offset": "432504", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN09.XA[17]", - "node_name": "TaK007", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "360", - "2": "-1", - "3": "-1" - } - }, - "0217": { - "SLPS_016_0x offset": "432624", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN09.XA[20]", - "node_name": "TaK010", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "37", - "2": "-1", - "3": "-1" - } - }, - "0218": { - "SLPS_016_0x offset": "437224", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[8]", - "node_name": "TaK125", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "65", - "2": "-1", - "3": "-1" - } - }, - "0219": { - "SLPS_016_0x offset": "418184", - "green_text": "", - "image_table_indices": { - "1": "163", - "2": "171", - "3": "176" - }, - "is_hidden": "32", - "media_file": "LAIN03.XA[6]", - "node_name": "Ekm004", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "17", - "4": "3" - }, - "site": "A", - "type": "6", - "unlocked_by": "165", - "upgrade_requirement": "0", - "words": { - "1": "43", - "2": "25", - "3": "65" - } - }, - "0221": { - "SLPS_016_0x offset": "428984", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "14", - "2": "-1", - "3": "-1" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[9]", - "node_name": "Tda011", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "435", - "upgrade_requirement": "0", - "words": { - "1": "393", - "2": "394", - "3": "201" - } - }, - "0222": { - "SLPS_016_0x offset": "429024", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "507", - "2": "58", - "3": "269" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[10]", - "node_name": "Tda012", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "436", - "upgrade_requirement": "0", - "words": { - "1": "138", - "2": "53", - "3": "4" - } - }, - "0223": { - "SLPS_016_0x offset": "429064", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "521", - "2": "277", - "3": "66" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[11]", - "node_name": "Tda013", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "437", - "upgrade_requirement": "0", - "words": { - "1": "292", - "2": "97", - "3": "146" - } - }, - "0300": { - "SLPS_016_0x offset": "429184", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "68", - "2": "280", - "3": "544" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[14]", - "node_name": "Tda016", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "440", - "upgrade_requirement": "0", - "words": { - "1": "173", - "2": "91", - "3": "259" - } - }, - "0301": { - "SLPS_016_0x offset": "432664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN09.XA[21]", - "node_name": "TaK011", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "276", - "2": "-1", - "3": "-1" - } - }, - "0303": { - "SLPS_016_0x offset": "432704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN09.XA[22]", - "node_name": "TaK012", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "192", - "2": "-1", - "3": "-1" - } - }, - "0304": { - "SLPS_016_0x offset": "418224", - "green_text": "", - "image_table_indices": { - "1": "173", - "2": "177", - "3": "175" - }, - "is_hidden": "32", - "media_file": "LAIN03.XA[7]", - "node_name": "Ekm005", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "18", - "4": "3" - }, - "site": "A", - "type": "6", - "unlocked_by": "166", - "upgrade_requirement": "0", - "words": { - "1": "154", - "2": "5", - "3": "251" - } - }, - "0306": { - "SLPS_016_0x offset": "429104", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "15", - "2": "-1", - "3": "-1" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[12]", - "node_name": "Tda014", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "438", - "upgrade_requirement": "0", - "words": { - "1": "383", - "2": "152", - "3": "95" - } - }, - "0307": { - "SLPS_016_0x offset": "429144", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "279", - "2": "67", - "3": "528" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[13]", - "node_name": "Tda015", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "439", - "upgrade_requirement": "0", - "words": { - "1": "204", - "2": "143", - "3": "267" - } - }, - "0308": { - "SLPS_016_0x offset": "429264", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "548", - "2": "70", - "3": "325" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[16]", - "node_name": "Tda018", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "442", - "upgrade_requirement": "0", - "words": { - "1": "397", - "2": "395", - "3": "161" - } - }, - "0310": { - "SLPS_016_0x offset": "437264", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[9]", - "node_name": "TaK126", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "48", - "2": "-1", - "3": "-1" - } - }, - "0312": { - "SLPS_016_0x offset": "437304", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[10]", - "node_name": "TaK127", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "4", - "2": "-1", - "3": "-1" - } - }, - "0313": { - "SLPS_016_0x offset": "418264", - "green_text": "", - "image_table_indices": { - "1": "702", - "2": "661", - "3": "770" - }, - "is_hidden": "32", - "media_file": "LAIN03.XA[8]", - "node_name": "Ekm006", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "19", - "4": "3" - }, - "site": "A", - "type": "6", - "unlocked_by": "167", - "upgrade_requirement": "0", - "words": { - "1": "69", - "2": "252", - "3": "71" - } - }, - "0314": { - "SLPS_016_0x offset": "437344", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[11]", - "node_name": "TaK128", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "371", - "2": "-1", - "3": "-1" - } - }, - "0315": { - "SLPS_016_0x offset": "429224", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "69", - "2": "547", - "3": "281" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[15]", - "node_name": "Tda017", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "441", - "upgrade_requirement": "0", - "words": { - "1": "395", - "2": "396", - "3": "83" - } - }, - "0316": { - "SLPS_016_0x offset": "429304", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "549", - "2": "335", - "3": "71" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[17]", - "node_name": "Tda019", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "443", - "upgrade_requirement": "0", - "words": { - "1": "55", - "2": "398", - "3": "288" - } - }, - "0317": { - "SLPS_016_0x offset": "429344", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "337", - "2": "550", - "3": "72" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[18]", - "node_name": "Tda020", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "444", - "upgrade_requirement": "0", - "words": { - "1": "158", - "2": "139", - "3": "57" - } - }, - "0318": { - "SLPS_016_0x offset": "432744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN09.XA[23]", - "node_name": "TaK013", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "205", - "2": "-1", - "3": "-1" - } - }, - "0319": { - "SLPS_016_0x offset": "432784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[24]", - "node_name": "TaK014", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "82", - "2": "-1", - "3": "-1" - } - }, - "0321": { - "SLPS_016_0x offset": "432824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[25]", - "node_name": "TaK015", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "126", - "2": "-1", - "3": "-1" - } - }, - "0322": { - "SLPS_016_0x offset": "432864", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN09.XA[26]", - "node_name": "TaK016", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "4", - "2": "-1", - "3": "-1" - } - }, - "0400": { - "SLPS_016_0x offset": "432904", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[27]", - "node_name": "TaK017", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "237", - "2": "-1", - "3": "-1" - } - }, - "0401": { - "SLPS_016_0x offset": "429384", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "350", - "2": "74", - "3": "553" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[19]", - "node_name": "Tda021", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "445", - "upgrade_requirement": "0", - "words": { - "1": "30", - "2": "226", - "3": "193" - } - }, - "0402": { - "SLPS_016_0x offset": "429424", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "76", - "2": "351", - "3": "555" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[20]", - "node_name": "Tda022", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "446", - "upgrade_requirement": "0", - "words": { - "1": "168", - "2": "93", - "3": "399" - } - }, - "0403": { - "SLPS_016_0x offset": "432944", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[28]", - "node_name": "TaK018", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "371", - "2": "-1", - "3": "-1" - } - }, - "0404": { - "SLPS_016_0x offset": "437384", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[12]", - "node_name": "TaK129", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "308", - "2": "-1", - "3": "-1" - } - }, - "0405": { - "SLPS_016_0x offset": "412104", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F025.STR", - "node_name": "Dc1015", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "23", - "2": "42", - "3": "43" - } - }, - "0406": { - "SLPS_016_0x offset": "432984", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN09.XA[29]", - "node_name": "TaK019", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "389", - "2": "-1", - "3": "-1" - } - }, - "0407": { - "SLPS_016_0x offset": "437424", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN12.XA[13]", - "node_name": "TaK130", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "83", - "2": "-1", - "3": "-1" - } - }, - "0408": { - "SLPS_016_0x offset": "415944", - "green_text": "", - "image_table_indices": { - "1": "265", - "2": "54", - "3": "57" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[6]", - "node_name": "Dia001", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "57", - "upgrade_requirement": "0", - "words": { - "1": "207", - "2": "208", - "3": "146" - } - }, - "0409": { - "SLPS_016_0x offset": "415984", - "green_text": "", - "image_table_indices": { - "1": "43", - "2": "44", - "3": "30" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[7]", - "node_name": "Dia002", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "110", - "upgrade_requirement": "0", - "words": { - "1": "209", - "2": "210", - "3": "19" - } - }, - "0410": { - "SLPS_016_0x offset": "429464", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "79", - "2": "556", - "3": "352" - }, - "is_hidden": "16", - "media_file": "LAIN08.XA[21]", - "node_name": "Tda023", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "447", - "upgrade_requirement": "0", - "words": { - "1": "43", - "2": "383", - "3": "326" - } - }, - "0411": { - "SLPS_016_0x offset": "429504", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "16", - "2": "-1", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN08.XA[22]", - "node_name": "Tda024", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "58", - "upgrade_requirement": "0", - "words": { - "1": "381", - "2": "400", - "3": "148" - } - }, - "0412": { - "SLPS_016_0x offset": "429544", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "558", - "2": "353", - "3": "80" - }, - "is_hidden": "0", - "media_file": "LAIN08.XA[23]", - "node_name": "Tda025", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "449", - "upgrade_requirement": "2", - "words": { - "1": "73", - "2": "47", - "3": "401" - } - }, - "0413": { - "SLPS_016_0x offset": "439904", - "green_text": "mT up-date App.", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\INS01.STR", - "node_name": "SSkn01", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, - "site": "A", - "type": "7", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0414": { - "SLPS_016_0x offset": "413824", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "31", - "2": "584", - "3": "607" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[0]", - "node_name": "Cou001", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "107", - "2": "126", - "3": "95" - } - }, - "0415": { - "SLPS_016_0x offset": "413864", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "577", - "2": "583", - "3": "492" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[1]", - "node_name": "Cou002", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "57", - "upgrade_requirement": "0", - "words": { - "1": "127", - "2": "128", - "3": "129" - } - }, - "0416": { - "SLPS_016_0x offset": "413944", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "546", - "2": "529", - "3": "531" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[3]", - "node_name": "Cou004", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "132", - "2": "133", - "3": "134" - } - }, - "0417": { - "SLPS_016_0x offset": "439504", - "green_text": "nT APPLICATION", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[5]", - "node_name": "GaTE01", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, - "site": "A", - "type": "8", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0418": { - "SLPS_016_0x offset": "416024", - "green_text": "", - "image_table_indices": { - "1": "28", - "2": "53", - "3": "86" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[8]", - "node_name": "Dia003", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "111", - "upgrade_requirement": "0", - "words": { - "1": "83", - "2": "167", - "3": "80" - } - }, - "0419": { - "SLPS_016_0x offset": "416064", - "green_text": "", - "image_table_indices": { - "1": "105", - "2": "249", - "3": "254" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[9]", - "node_name": "Dia004", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "112", - "upgrade_requirement": "0", - "words": { - "1": "93", - "2": "16", - "3": "211" - } - }, - "0420": { - "SLPS_016_0x offset": "429584", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "354", - "2": "559", - "3": "82" - }, - "is_hidden": "3", - "media_file": "LAIN08.XA[24]", - "node_name": "Tda026", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "391", - "2": "402", - "3": "183" - } - }, - "0421": { - "SLPS_016_0x offset": "429624", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "355", - "2": "83", - "3": "561" - }, - "is_hidden": "0", - "media_file": "LAIN08.XA[25]", - "node_name": "Tda027", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "451", - "upgrade_requirement": "3", - "words": { - "1": "403", - "2": "264", - "3": "396" - } - }, - "0422": { - "SLPS_016_0x offset": "429664", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "93", - "2": "356", - "3": "562" - }, - "is_hidden": "3", - "media_file": "LAIN08.XA[26]", - "node_name": "Tda028", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "163", - "2": "404", - "3": "167" - } - }, - "0423": { - "SLPS_016_0x offset": "413904", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "495", - "2": "490", - "3": "551" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[2]", - "node_name": "Cou003", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "58", - "upgrade_requirement": "0", - "words": { - "1": "44", - "2": "130", - "3": "131" - } - }, - "0500": { - "SLPS_016_0x offset": "412224", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F029.STR", - "node_name": "Dc1018", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "48", - "2": "49", - "3": "50" - } - }, - "0501": { - "SLPS_016_0x offset": "413984", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "443", - "2": "445", - "3": "447" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[4]", - "node_name": "Cou005", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "60", - "upgrade_requirement": "0", - "words": { - "1": "135", - "2": "136", - "3": "137" - } - }, - "0503": { - "SLPS_016_0x offset": "416104", - "green_text": "", - "image_table_indices": { - "1": "256", - "2": "55", - "3": "321" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[10]", - "node_name": "Dia005", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "113", - "upgrade_requirement": "0", - "words": { - "1": "69", - "2": "211", - "3": "212" - } - }, - "0504": { - "SLPS_016_0x offset": "416144", - "green_text": "", - "image_table_indices": { - "1": "322", - "2": "324", - "3": "329" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[11]", - "node_name": "Dia006", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "114", - "upgrade_requirement": "1", - "words": { - "1": "169", - "2": "163", - "3": "70" - } - }, - "0505": { - "SLPS_016_0x offset": "416184", - "green_text": "", - "image_table_indices": { - "1": "331", - "2": "330", - "3": "376" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[12]", - "node_name": "Dia007", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "115", - "upgrade_requirement": "0", - "words": { - "1": "207", - "2": "165", - "3": "34" - } - }, - "0506": { - "SLPS_016_0x offset": "429704", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "94", - "2": "564", - "3": "783" - }, - "is_hidden": "3", - "media_file": "LAIN08.XA[27]", - "node_name": "Tda029", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "43", - "2": "405", - "3": "73" - } - }, - "0507": { - "SLPS_016_0x offset": "429744", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "565", - "2": "95", - "3": "358" - }, - "is_hidden": "0", - "media_file": "LAIN08.XA[28]", - "node_name": "Tda030", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "454", - "upgrade_requirement": "0", - "words": { - "1": "151", - "2": "226", - "3": "162" - } - }, - "0508": { - "SLPS_016_0x offset": "429824", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "360", - "2": "569", - "3": "102" - }, - "is_hidden": "3", - "media_file": "LAIN08.XA[30]", - "node_name": "Tda032", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "397", - "2": "300", - "3": "2" - } - }, - "0509": { - "SLPS_016_0x offset": "429864", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "361", - "2": "114", - "3": "570" - }, - "is_hidden": "0", - "media_file": "LAIN08.XA[31]", - "node_name": "Tda033", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "457", - "upgrade_requirement": "1", - "words": { - "1": "407", - "2": "397", - "3": "383" - } - }, - "0510": { - "SLPS_016_0x offset": "414024", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "442", - "2": "439", - "3": "446" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[5]", - "node_name": "Cou006", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "138", - "2": "5", - "3": "93" - } - }, - "0511": { - "SLPS_016_0x offset": "414064", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "464", - "2": "461", - "3": "406" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[6]", - "node_name": "Cou007", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "62", - "upgrade_requirement": "0", - "words": { - "1": "139", - "2": "68", - "3": "24" - } - }, - "0512": { - "SLPS_016_0x offset": "433024", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN09.XA[30]", - "node_name": "TaK020", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "93", - "2": "-1", - "3": "-1" - } - }, - "0513": { - "SLPS_016_0x offset": "411664", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F004.STR", - "node_name": "Dc1004", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "9", - "2": "10", - "3": "11" - } - }, - "0514": { - "SLPS_016_0x offset": "416224", - "green_text": "", - "image_table_indices": { - "1": "670", - "2": "347", - "3": "381" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[13]", - "node_name": "Dia008", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "60", - "upgrade_requirement": "0", - "words": { - "1": "213", - "2": "20", - "3": "214" - } - }, - "0515": { - "SLPS_016_0x offset": "429784", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "566", - "2": "359", - "3": "98" - }, - "is_hidden": "3", - "media_file": "LAIN08.XA[29]", - "node_name": "Tda031", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "73", - "2": "64", - "3": "406" - } - }, - "0516": { - "SLPS_016_0x offset": "416304", - "green_text": "", - "image_table_indices": { - "1": "380", - "2": "390", - "3": "391" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[15]", - "node_name": "Dia010", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "118", - "upgrade_requirement": "0", - "words": { - "1": "215", - "2": "164", - "3": "80" - } - }, - "0517": { - "SLPS_016_0x offset": "429904", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "115", - "2": "362", - "3": "571" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[0]", - "node_name": "Tda034", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "168", - "2": "193", - "3": "20" - } - }, - "0518": { - "SLPS_016_0x offset": "429944", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "116", - "2": "572", - "3": "363" - }, - "is_hidden": "0", - "media_file": "LAIN09.XA[1]", - "node_name": "Tda035", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "459", - "upgrade_requirement": "3", - "words": { - "1": "173", - "2": "193", - "3": "401" - } - }, - "0520": { - "SLPS_016_0x offset": "414104", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "408", - "2": "409", - "3": "418" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[7]", - "node_name": "Cou008", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "140", - "2": "73", - "3": "48" - } - }, - "0521": { - "SLPS_016_0x offset": "414144", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "412", - "2": "545", - "3": "536" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[8]", - "node_name": "Cou009", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "64", - "upgrade_requirement": "1", - "words": { - "1": "45", - "2": "141", - "3": "83" - } - }, - "0522": { - "SLPS_016_0x offset": "414184", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "608", - "2": "586", - "3": "618" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[9]", - "node_name": "Cou010", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "65", - "upgrade_requirement": "0", - "words": { - "1": "142", - "2": "143", - "3": "144" - } - }, - "0523": { - "SLPS_016_0x offset": "416264", - "green_text": "", - "image_table_indices": { - "1": "267", - "2": "348", - "3": "375" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[14]", - "node_name": "Dia009", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "62", - "upgrade_requirement": "0", - "words": { - "1": "169", - "2": "56", - "3": "155" - } - }, - "0600": { - "SLPS_016_0x offset": "416384", - "green_text": "", - "image_table_indices": { - "1": "455", - "2": "421", - "3": "530" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[17]", - "node_name": "Dia012", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "64", - "upgrade_requirement": "0", - "words": { - "1": "217", - "2": "218", - "3": "158" - } - }, - "0601": { - "SLPS_016_0x offset": "416344", - "green_text": "", - "image_table_indices": { - "1": "393", - "2": "427", - "3": "417" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[16]", - "node_name": "Dia011", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "119", - "upgrade_requirement": "1", - "words": { - "1": "70", - "2": "131", - "3": "216" - } - }, - "0602": { - "SLPS_016_0x offset": "429984", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "579", - "2": "118", - "3": "364" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[2]", - "node_name": "Tda036", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "167", - "2": "16", - "3": "97" - } - }, - "0603": { - "SLPS_016_0x offset": "430024", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "580", - "2": "365", - "3": "119" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[3]", - "node_name": "Tda037", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "384", - "2": "161", - "3": "37" - } - }, - "0604": { - "SLPS_016_0x offset": "433064", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN09.XA[31]", - "node_name": "TaK021", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "31", - "2": "-1", - "3": "-1" - } - }, - "0606": { - "SLPS_016_0x offset": "414224", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "392", - "2": "395", - "3": "394" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[10]", - "node_name": "Cou011", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "145", - "2": "146", - "3": "51" - } - }, - "0607": { - "SLPS_016_0x offset": "414264", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "349", - "2": "257", - "3": "252" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[11]", - "node_name": "Cou012", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "67", - "upgrade_requirement": "0", - "words": { - "1": "71", - "2": "143", - "3": "147" - } - }, - "0608": { - "SLPS_016_0x offset": "414344", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "0", - "2": "-1", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[13]", - "node_name": "Cou014", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "69", - "upgrade_requirement": "0", - "words": { - "1": "149", - "2": "150", - "3": "151" - } - }, - "0609": { - "SLPS_016_0x offset": "416424", - "green_text": "", - "image_table_indices": { - "1": "428", - "2": "465", - "3": "501" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[18]", - "node_name": "Dia013", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "121", - "upgrade_requirement": "0", - "words": { - "1": "219", - "2": "220", - "3": "167" - } - }, - "0610": { - "SLPS_016_0x offset": "416464", - "green_text": "", - "image_table_indices": { - "1": "502", - "2": "429", - "3": "533" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[19]", - "node_name": "Dia014", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "67", - "upgrade_requirement": "0", - "words": { - "1": "71", - "2": "188", - "3": "39" - } - }, - "0611": { - "SLPS_016_0x offset": "416504", - "green_text": "", - "image_table_indices": { - "1": "371", - "2": "491", - "3": "407" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[20]", - "node_name": "Dia015", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "69", - "upgrade_requirement": "0", - "words": { - "1": "0", - "2": "167", - "3": "185" - } - }, - "0612": { - "SLPS_016_0x offset": "433104", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[0]", - "node_name": "TaK022", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "241", - "2": "-1", - "3": "-1" - } - }, - "0613": { - "SLPS_016_0x offset": "419104", - "green_text": "", - "image_table_indices": { - "1": "1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[9]", - "node_name": "Lda001", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "70", - "upgrade_requirement": "0", - "words": { - "1": "151", - "2": "257", - "3": "142" - } - }, - "0614": { - "SLPS_016_0x offset": "433144", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[1]", - "node_name": "TaK023", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "399", - "2": "-1", - "3": "-1" - } - }, - "0615": { - "SLPS_016_0x offset": "414304", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "29", - "2": "253", - "3": "370" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[12]", - "node_name": "Cou013", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "148", - "2": "1", - "3": "62" - } - }, - "0616": { - "SLPS_016_0x offset": "414384", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "258", - "2": "179", - "3": "32" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[14]", - "node_name": "Cou015", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "152", - "2": "153", - "3": "154" - } - }, - "0617": { - "SLPS_016_0x offset": "414424", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "180", - "2": "259", - "3": "46" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[15]", - "node_name": "Cou016", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "71", - "upgrade_requirement": "1", - "words": { - "1": "155", - "2": "156", - "3": "157" - } - }, - "0618": { - "SLPS_016_0x offset": "439944", - "green_text": "mT up-date App.", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\INS02.STR", - "node_name": "SSkn02", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, - "site": "A", - "type": "7", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0619": { - "SLPS_016_0x offset": "416544", - "green_text": "", - "image_table_indices": { - "1": "516", - "2": "372", - "3": "410" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[21]", - "node_name": "Dia016", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "71", - "upgrade_requirement": "0", - "words": { - "1": "221", - "2": "217", - "3": "159" - } - }, - "0620": { - "SLPS_016_0x offset": "437464", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[14]", - "node_name": "TaK131", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "224", - "2": "-1", - "3": "-1" - } - }, - "0621": { - "SLPS_016_0x offset": "439544", - "green_text": "nT APPLICATION", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[6]", - "node_name": "GaTE02", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, - "site": "A", - "type": "8", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0622": { - "SLPS_016_0x offset": "433184", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN10.XA[2]", - "node_name": "TaK024", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "70", - "2": "-1", - "3": "-1" - } - }, - "0623": { - "SLPS_016_0x offset": "437504", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[15]", - "node_name": "TaK132", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "340", - "2": "-1", - "3": "-1" - } - }, - "0700": { - "SLPS_016_0x offset": "419144", - "green_text": "", - "image_table_indices": { - "1": "238", - "2": "220", - "3": "235" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[10]", - "node_name": "Lda002", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "74", - "upgrade_requirement": "0", - "words": { - "1": "253", - "2": "240", - "3": "160" - } - }, - "0701": { - "SLPS_016_0x offset": "414464", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "181", - "2": "49", - "3": "260" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[16]", - "node_name": "Cou017", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "158", - "2": "159", - "3": "160" - } - }, - "0702": { - "SLPS_016_0x offset": "414504", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "50", - "2": "182", - "3": "261" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[17]", - "node_name": "Cou018", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "73", - "upgrade_requirement": "1", - "words": { - "1": "151", - "2": "161", - "3": "162" - } - }, - "0704": { - "SLPS_016_0x offset": "416584", - "green_text": "", - "image_table_indices": { - "1": "517", - "2": "411", - "3": "373" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[22]", - "node_name": "Dia017", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "73", - "upgrade_requirement": "1", - "words": { - "1": "207", - "2": "171", - "3": "23" - } - }, - "0705": { - "SLPS_016_0x offset": "439664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[9]", - "node_name": "P2-01", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "9", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0706": { - "SLPS_016_0x offset": "430064", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "17", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[4]", - "node_name": "Tda038", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "161", - "2": "126", - "3": "383" - } - }, - "0708": { - "SLPS_016_0x offset": "433224", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN10.XA[3]", - "node_name": "TaK025", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "385", - "2": "-1", - "3": "-1" - } - }, - "0709": { - "SLPS_016_0x offset": "419184", - "green_text": "", - "image_table_indices": { - "1": "2", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[11]", - "node_name": "Lda003", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "258", - "2": "237", - "3": "259" - } - }, - "0710": { - "SLPS_016_0x offset": "419224", - "green_text": "", - "image_table_indices": { - "1": "191", - "2": "193", - "3": "195" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[12]", - "node_name": "Lda004", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "191", - "upgrade_requirement": "1", - "words": { - "1": "257", - "2": "140", - "3": "260" - } - }, - "0712": { - "SLPS_016_0x offset": "412024", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F022.STR", - "node_name": "Dc1013", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "36", - "2": "37", - "3": "38" - } - }, - "0713": { - "SLPS_016_0x offset": "433264", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[4]", - "node_name": "TaK026", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "388", - "2": "-1", - "3": "-1" - } - }, - "0714": { - "SLPS_016_0x offset": "437544", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN12.XA[16]", - "node_name": "TaK133", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "223", - "2": "-1", - "3": "-1" - } - }, - "0716": { - "SLPS_016_0x offset": "433384", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[7]", - "node_name": "TaK029", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "2", - "2": "-1", - "3": "-1" - } - }, - "0718": { - "SLPS_016_0x offset": "419264", - "green_text": "", - "image_table_indices": { - "1": "240", - "2": "150", - "3": "144" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[13]", - "node_name": "Lda005", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "33", - "2": "217", - "3": "261" - } - }, - "0719": { - "SLPS_016_0x offset": "419304", - "green_text": "", - "image_table_indices": { - "1": "133", - "2": "117", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[14]", - "node_name": "Lda006", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "193", - "upgrade_requirement": "2", - "words": { - "1": "205", - "2": "83", - "3": "262" - } - }, - "0720": { - "SLPS_016_0x offset": "414544", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "52", - "2": "262", - "3": "183" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[18]", - "node_name": "Cou019", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "151", - "2": "163", - "3": "136" - } - }, - "0722": { - "SLPS_016_0x offset": "416624", - "green_text": "", - "image_table_indices": { - "1": "413", - "2": "519", - "3": "374" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[23]", - "node_name": "Dia018", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "75", - "upgrade_requirement": "2", - "words": { - "1": "214", - "2": "64", - "3": "188" - } - }, - "0723": { - "SLPS_016_0x offset": "433304", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN10.XA[5]", - "node_name": "TaK027", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "386", - "2": "-1", - "3": "-1" - } - }, - "0800": { - "SLPS_016_0x offset": "439584", - "green_text": "nT APPLICATION", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[7]", - "node_name": "GaTE03", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, - "site": "A", - "type": "8", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "0801": { - "SLPS_016_0x offset": "433344", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN10.XA[6]", - "node_name": "TaK028", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "119", - "2": "-1", - "3": "-1" - } - }, - "0802": { - "SLPS_016_0x offset": "437584", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[17]", - "node_name": "TaK134", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "407", - "2": "-1", - "3": "-1" - } - }, - "0803": { - "SLPS_016_0x offset": "419344", - "green_text": "", - "image_table_indices": { - "1": "99", - "2": "420", - "3": "62" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[15]", - "node_name": "Lda007", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "254", - "2": "263", - "3": "264" - } - }, - "0804": { - "SLPS_016_0x offset": "419384", - "green_text": "", - "image_table_indices": { - "1": "36", - "2": "703", - "3": "696" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[16]", - "node_name": "Lda008", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "195", - "upgrade_requirement": "1", - "words": { - "1": "257", - "2": "70", - "3": "265" - } - }, - "0805": { - "SLPS_016_0x offset": "419424", - "green_text": "", - "image_table_indices": { - "1": "154", - "2": "187", - "3": "613" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[17]", - "node_name": "Lda009", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "219", - "2": "152", - "3": "252" - } - }, - "0806": { - "SLPS_016_0x offset": "419464", - "green_text": "", - "image_table_indices": { - "1": "3", - "2": "-1", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[18]", - "node_name": "Lda010", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "197", - "upgrade_requirement": "1", - "words": { - "1": "6", - "2": "160", - "3": "55" - } - }, - "0809": { - "SLPS_016_0x offset": "433424", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[8]", - "node_name": "TaK030", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "301", - "2": "-1", - "3": "-1" - } - }, - "0810": { - "SLPS_016_0x offset": "437624", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[18]", - "node_name": "TaK135", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "329", - "2": "-1", - "3": "-1" - } - }, - "0812": { - "SLPS_016_0x offset": "419504", - "green_text": "", - "image_table_indices": { - "1": "593", - "2": "578", - "3": "437" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[19]", - "node_name": "Lda011", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "151", - "2": "69", - "3": "212" - } - }, - "0813": { - "SLPS_016_0x offset": "419544", - "green_text": "", - "image_table_indices": { - "1": "4", - "2": "-1", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[20]", - "node_name": "Lda012", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "199", - "upgrade_requirement": "1", - "words": { - "1": "67", - "2": "266", - "3": "169" - } - }, - "0814": { - "SLPS_016_0x offset": "419584", - "green_text": "", - "image_table_indices": { - "1": "5", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[21]", - "node_name": "Lda013", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "22", - "2": "254", - "3": "206" - } - }, - "0815": { - "SLPS_016_0x offset": "433464", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN10.XA[9]", - "node_name": "TaK031", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "67", - "2": "-1", - "3": "-1" - } - }, - "0816": { - "SLPS_016_0x offset": "414584", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "263", - "2": "63", - "3": "184" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[19]", - "node_name": "Cou020", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "1", - "2": "164", - "3": "67" - } - }, - "0817": { - "SLPS_016_0x offset": "414624", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "264", - "2": "185", - "3": "75" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[20]", - "node_name": "Cou021", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "76", - "upgrade_requirement": "1", - "words": { - "1": "165", - "2": "23", - "3": "140" - } - }, - "0818": { - "SLPS_016_0x offset": "416664", - "green_text": "", - "image_table_indices": { - "1": "414", - "2": "377", - "3": "520" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[24]", - "node_name": "Dia019", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "76", - "upgrade_requirement": "1", - "words": { - "1": "113", - "2": "40", - "3": "144" - } - }, - "0819": { - "SLPS_016_0x offset": "433504", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[10]", - "node_name": "TaK032", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "149", - "2": "-1", - "3": "-1" - } - }, - "0820": { - "SLPS_016_0x offset": "437664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN12.XA[19]", - "node_name": "TaK136", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "325", - "2": "-1", - "3": "-1" - } - }, - "0821": { - "SLPS_016_0x offset": "419624", - "green_text": "", - "image_table_indices": { - "1": "6", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[22]", - "node_name": "Lda014", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "253", - "2": "267", - "3": "268" - } - }, - "0822": { - "SLPS_016_0x offset": "419664", - "green_text": "", - "image_table_indices": { - "1": "7", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[23]", - "node_name": "Lda015", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "269", - "2": "3", - "3": "10" - } - }, - "0823": { - "SLPS_016_0x offset": "419704", - "green_text": "", - "image_table_indices": { - "1": "8", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[24]", - "node_name": "Lda016", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "160", - "2": "143", - "3": "270" - } - }, - "0900": { - "SLPS_016_0x offset": "419824", - "green_text": "", - "image_table_indices": { - "1": "674", - "2": "673", - "3": "430" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[27]", - "node_name": "Lda019", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "261", - "2": "124", - "3": "107" - } - }, - "0901": { - "SLPS_016_0x offset": "414664", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "186", - "2": "268", - "3": "81" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[21]", - "node_name": "Cou022", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "77", - "upgrade_requirement": "2", - "words": { - "1": "166", - "2": "167", - "3": "168" - } - }, - "0902": { - "SLPS_016_0x offset": "414704", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "190", - "2": "85", - "3": "272" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[22]", - "node_name": "Cou023", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "78", - "upgrade_requirement": "2", - "words": { - "1": "169", - "2": "154", - "3": "129" - } - }, - "0904": { - "SLPS_016_0x offset": "411824", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F012.STR", - "node_name": "Dc1008", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "21", - "2": "22", - "3": "23" - } - }, - "0905": { - "SLPS_016_0x offset": "433544", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[11]", - "node_name": "TaK033", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "8", - "2": "-1", - "3": "-1" - } - }, - "0906": { - "SLPS_016_0x offset": "419744", - "green_text": "", - "image_table_indices": { - "1": "687", - "2": "686", - "3": "704" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[25]", - "node_name": "Lda017", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "93", - "2": "47", - "3": "45" - } - }, - "0907": { - "SLPS_016_0x offset": "419784", - "green_text": "", - "image_table_indices": { - "1": "691", - "2": "701", - "3": "648" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[26]", - "node_name": "Lda018", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "219", - "2": "73", - "3": "140" - } - }, - "0908": { - "SLPS_016_0x offset": "419864", - "green_text": "", - "image_table_indices": { - "1": "155", - "2": "518", - "3": "37" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[28]", - "node_name": "Lda020", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "271", - "2": "43", - "3": "195" - } - }, - "0909": { - "SLPS_016_0x offset": "419904", - "green_text": "", - "image_table_indices": { - "1": "688", - "2": "769", - "3": "689" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[29]", - "node_name": "Lda021", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "208", - "upgrade_requirement": "2", - "words": { - "1": "272", - "2": "132", - "3": "273" - } - }, - "0911": { - "SLPS_016_0x offset": "412144", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F026.STR", - "node_name": "Dc1016", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "37", - "2": "44", - "3": "45" - } - }, - "0912": { - "SLPS_016_0x offset": "430104", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "366", - "2": "121", - "3": "582" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[5]", - "node_name": "Tda039", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "402", - "2": "288", - "3": "47" - } - }, - "0913": { - "SLPS_016_0x offset": "433584", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN10.XA[12]", - "node_name": "TaK034", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "339", - "2": "-1", - "3": "-1" - } - }, - "0914": { - "SLPS_016_0x offset": "437704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[20]", - "node_name": "TaK137", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "4", - "2": "-1", - "3": "-1" - } - }, - "0917": { - "SLPS_016_0x offset": "419944", - "green_text": "", - "image_table_indices": { - "1": "21", - "2": "425", - "3": "26" - }, - "is_hidden": "3", - "media_file": "LAIN03.XA[30]", - "node_name": "Lda022", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "16", - "2": "253", - "3": "274" - } - }, - "0918": { - "SLPS_016_0x offset": "419984", - "green_text": "", - "image_table_indices": { - "1": "22", - "2": "27", - "3": "426" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[31]", - "node_name": "Lda023", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "210", - "upgrade_requirement": "2", - "words": { - "1": "274", - "2": "219", - "3": "56" - } - }, - "0919": { - "SLPS_016_0x offset": "433624", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN10.XA[13]", - "node_name": "TaK035", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "92", - "2": "-1", - "3": "-1" - } - }, - "0920": { - "SLPS_016_0x offset": "437744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[21]", - "node_name": "TaK138", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "55", - "2": "-1", - "3": "-1" - } - }, - "0921": { - "SLPS_016_0x offset": "433664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[14]", - "node_name": "TaK036", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "2", - "2": "-1", - "3": "-1" - } - }, - "0922": { - "SLPS_016_0x offset": "433704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[15]", - "node_name": "TaK037", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "260", - "2": "-1", - "3": "-1" - } - }, - "0923": { - "SLPS_016_0x offset": "437784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[22]", - "node_name": "TaK139", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "336", - "2": "-1", - "3": "-1" - } - }, - "1000": { - "SLPS_016_0x offset": "433744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN10.XA[16]", - "node_name": "TaK038", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "97", - "2": "-1", - "3": "-1" - } - }, - "1002": { - "SLPS_016_0x offset": "420024", - "green_text": "", - "image_table_indices": { - "1": "9", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[0]", - "node_name": "Lda024", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "261", - "2": "47", - "3": "275" - } - }, - "1003": { - "SLPS_016_0x offset": "420064", - "green_text": "", - "image_table_indices": { - "1": "20", - "2": "448", - "3": "23" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[1]", - "node_name": "Lda025", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "212", - "upgrade_requirement": "2", - "words": { - "1": "102", - "2": "261", - "3": "154" - } - }, - "1004": { - "SLPS_016_0x offset": "414744", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "87", - "2": "194", - "3": "282" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[23]", - "node_name": "Cou024", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "170", - "2": "171", - "3": "89" - } - }, - "1005": { - "SLPS_016_0x offset": "414784", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "88", - "2": "291", - "3": "196" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[24]", - "node_name": "Cou025", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "80", - "upgrade_requirement": "2", - "words": { - "1": "170", - "2": "172", - "3": "38" - } - }, - "1006": { - "SLPS_016_0x offset": "416704", - "green_text": "", - "image_table_indices": { - "1": "378", - "2": "415", - "3": "522" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[25]", - "node_name": "Dia020", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "80", - "upgrade_requirement": "1", - "words": { - "1": "222", - "2": "140", - "3": "8" - } - }, - "1007": { - "SLPS_016_0x offset": "433784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN10.XA[17]", - "node_name": "TaK039", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "69", - "2": "-1", - "3": "-1" - } - }, - "1008": { - "SLPS_016_0x offset": "430144", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "18", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[6]", - "node_name": "Tda040", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "288", - "2": "383", - "3": "68" - } - }, - "1009": { - "SLPS_016_0x offset": "430184", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "123", - "2": "42", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN09.XA[7]", - "node_name": "Tda041", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "465", - "upgrade_requirement": "2", - "words": { - "1": "282", - "2": "335", - "3": "383" - } - }, - "1011": { - "SLPS_016_0x offset": "420104", - "green_text": "", - "image_table_indices": { - "1": "449", - "2": "164", - "3": "24" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[2]", - "node_name": "Lda026", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "270", - "2": "276", - "3": "277" - } - }, - "1012": { - "SLPS_016_0x offset": "420144", - "green_text": "", - "image_table_indices": { - "1": "451", - "2": "25", - "3": "165" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[3]", - "node_name": "Lda027", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "261", - "2": "253", - "3": "154" - } - }, - "1013": { - "SLPS_016_0x offset": "420184", - "green_text": "", - "image_table_indices": { - "1": "342", - "2": "453", - "3": "166" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[4]", - "node_name": "Lda028", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "253", - "2": "278", - "3": "279" - } - }, - "1014": { - "SLPS_016_0x offset": "420224", - "green_text": "", - "image_table_indices": { - "1": "45", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[5]", - "node_name": "Lda029", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "210", - "2": "151", - "3": "251" - } - }, - "1015": { - "SLPS_016_0x offset": "437824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[23]", - "node_name": "TaK140", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "403", - "2": "-1", - "3": "-1" - } - }, - "1016": { - "SLPS_016_0x offset": "414824", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "323", - "2": "92", - "3": "197" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[25]", - "node_name": "Cou026", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "89", - "2": "173", - "3": "168" - } - }, - "1017": { - "SLPS_016_0x offset": "414864", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "326", - "2": "198", - "3": "103" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[26]", - "node_name": "Cou027", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "82", - "upgrade_requirement": "1", - "words": { - "1": "174", - "2": "175", - "3": "176" - } - }, - "1018": { - "SLPS_016_0x offset": "430224", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "595", - "2": "124", - "3": "367" - }, - "is_hidden": "0", - "media_file": "LAIN09.XA[8]", - "node_name": "Tda042", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "466", - "upgrade_requirement": "2", - "words": { - "1": "395", - "2": "129", - "3": "193" - } - }, - "1019": { - "SLPS_016_0x offset": "430264", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "600", - "2": "368", - "3": "125" - }, - "is_hidden": "0", - "media_file": "LAIN09.XA[9]", - "node_name": "Tda043", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "467", - "upgrade_requirement": "3", - "words": { - "1": "182", - "2": "178", - "3": "400" - } - }, - "1020": { - "SLPS_016_0x offset": "416744", - "green_text": "", - "image_table_indices": { - "1": "379", - "2": "523", - "3": "419" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[26]", - "node_name": "Dia021", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "82", - "upgrade_requirement": "1", - "words": { - "1": "174", - "2": "175", - "3": "147" - } - }, - "1021": { - "SLPS_016_0x offset": "420264", - "green_text": "", - "image_table_indices": { - "1": "167", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[6]", - "node_name": "Lda030", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "257", - "2": "267", - "3": "10" - } - }, - "1022": { - "SLPS_016_0x offset": "420304", - "green_text": "", - "image_table_indices": { - "1": "170", - "2": "456", - "3": "47" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[7]", - "node_name": "Lda031", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "278", - "2": "150", - "3": "280" - } - }, - "1100": { - "SLPS_016_0x offset": "433824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN10.XA[18]", - "node_name": "TaK040", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "158", - "2": "-1", - "3": "-1" - } - }, - "1101": { - "SLPS_016_0x offset": "433864", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[19]", - "node_name": "TaK041", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "319", - "2": "-1", - "3": "-1" - } - }, - "1102": { - "SLPS_016_0x offset": "437864", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[24]", - "node_name": "TaK141", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "38", - "2": "-1", - "3": "-1" - } - }, - "1103": { - "SLPS_016_0x offset": "433904", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[20]", - "node_name": "TaK042", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "318", - "2": "-1", - "3": "-1" - } - }, - "1104": { - "SLPS_016_0x offset": "412384", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F036.STR", - "node_name": "Dc1022", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "57", - "2": "58", - "3": "59" - } - }, - "1105": { - "SLPS_016_0x offset": "420344", - "green_text": "", - "image_table_indices": { - "1": "457", - "2": "189", - "3": "48" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[8]", - "node_name": "Lda032", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "82", - "2": "253", - "3": "41" - } - }, - "1106": { - "SLPS_016_0x offset": "420384", - "green_text": "", - "image_table_indices": { - "1": "458", - "2": "51", - "3": "237" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[9]", - "node_name": "Lda033", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "219", - "2": "281", - "3": "97" - } - }, - "1107": { - "SLPS_016_0x offset": "420424", - "green_text": "", - "image_table_indices": { - "1": "56", - "2": "33", - "3": "239" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[10]", - "node_name": "Lda034", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "89", - "2": "124", - "3": "282" - } - }, - "1109": { - "SLPS_016_0x offset": "433944", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[21]", - "node_name": "TaK043", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "321", - "2": "-1", - "3": "-1" - } - }, - "1110": { - "SLPS_016_0x offset": "437904", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN12.XA[25]", - "node_name": "TaK142", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "225", - "2": "-1", - "3": "-1" - } - }, - "1111": { - "SLPS_016_0x offset": "439704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[10]", - "node_name": "P2-02", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "9", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1112": { - "SLPS_016_0x offset": "439984", - "green_text": "mT up-date App.", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\INS03.STR", - "node_name": "SSkn03", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, - "site": "A", - "type": "7", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1113": { - "SLPS_016_0x offset": "439744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[11]", - "node_name": "P2-03", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "9", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1114": { - "SLPS_016_0x offset": "420464", - "green_text": "", - "image_table_indices": { - "1": "59", - "2": "241", - "3": "466" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[11]", - "node_name": "Lda035", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "283", - "2": "275", - "3": "219" - } - }, - "1115": { - "SLPS_016_0x offset": "420504", - "green_text": "", - "image_table_indices": { - "1": "242", - "2": "60", - "3": "34" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[12]", - "node_name": "Lda036", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "281", - "2": "217", - "3": "284" - } - }, - "1116": { - "SLPS_016_0x offset": "420584", - "green_text": "", - "image_table_indices": { - "1": "470", - "2": "255", - "3": "64" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[14]", - "node_name": "Lda038", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "286", - "2": "135", - "3": "3" - } - }, - "1117": { - "SLPS_016_0x offset": "420624", - "green_text": "", - "image_table_indices": { - "1": "471", - "2": "65", - "3": "311" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[15]", - "node_name": "Lda039", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "4", - "2": "208", - "3": "64" - } - }, - "1118": { - "SLPS_016_0x offset": "420664", - "green_text": "", - "image_table_indices": { - "1": "73", - "2": "472", - "3": "312" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[16]", - "node_name": "Lda040", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "227", - "upgrade_requirement": "1", - "words": { - "1": "287", - "2": "95", - "3": "160" - } - }, - "1119": { - "SLPS_016_0x offset": "411544", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F001.STR", - "node_name": "Dc1001", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "0", - "2": "1", - "3": "2" - } - }, - "1120": { - "SLPS_016_0x offset": "414904", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "199", - "2": "327", - "3": "104" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[27]", - "node_name": "Cou028", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "177", - "2": "178", - "3": "93" - } - }, - "1121": { - "SLPS_016_0x offset": "414944", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "200", - "2": "106", - "3": "328" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[28]", - "node_name": "Cou029", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "84", - "upgrade_requirement": "2", - "words": { - "1": "2", - "2": "65", - "3": "179" - } - }, - "1122": { - "SLPS_016_0x offset": "416784", - "green_text": "", - "image_table_indices": { - "1": "532", - "2": "382", - "3": "431" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[27]", - "node_name": "Dia022", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "84", - "upgrade_requirement": "2", - "words": { - "1": "71", - "2": "153", - "3": "223" - } - }, - "1123": { - "SLPS_016_0x offset": "420544", - "green_text": "", - "image_table_indices": { - "1": "243", - "2": "460", - "3": "61" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[13]", - "node_name": "Lda037", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "224", - "upgrade_requirement": "1", - "words": { - "1": "285", - "2": "105", - "3": "205" - } - }, - "1201": { - "SLPS_016_0x offset": "433984", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN10.XA[22]", - "node_name": "TaK044", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "316", - "2": "-1", - "3": "-1" - } - }, - "1202": { - "SLPS_016_0x offset": "420704", - "green_text": "", - "image_table_indices": { - "1": "77", - "2": "313", - "3": "473" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[17]", - "node_name": "Lda041", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "287", - "2": "135", - "3": "67" - } - }, - "1203": { - "SLPS_016_0x offset": "420744", - "green_text": "", - "image_table_indices": { - "1": "314", - "2": "78", - "3": "474" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[18]", - "node_name": "Lda042", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "58", - "2": "139", - "3": "288" - } - }, - "1204": { - "SLPS_016_0x offset": "420784", - "green_text": "", - "image_table_indices": { - "1": "315", - "2": "477", - "3": "84" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[19]", - "node_name": "Lda043", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "230", - "upgrade_requirement": "1", - "words": { - "1": "253", - "2": "140", - "3": "123" - } - }, - "1206": { - "SLPS_016_0x offset": "434024", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[23]", - "node_name": "TaK045", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "237", - "2": "-1", - "3": "-1" - } - }, - "1207": { - "SLPS_016_0x offset": "437944", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN12.XA[26]", - "node_name": "TaK143", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "43", - "2": "-1", - "3": "-1" - } - }, - "1208": { - "SLPS_016_0x offset": "434104", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN10.XA[25]", - "node_name": "TaK047", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "4", - "2": "-1", - "3": "-1" - } - }, - "1209": { - "SLPS_016_0x offset": "437984", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[27]", - "node_name": "TaK144", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "64", - "2": "-1", - "3": "-1" - } - }, - "1211": { - "SLPS_016_0x offset": "420824", - "green_text": "", - "image_table_indices": { - "1": "478", - "2": "316", - "3": "89" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[20]", - "node_name": "Lda044", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "213", - "2": "102", - "3": "254" - } - }, - "1212": { - "SLPS_016_0x offset": "420864", - "green_text": "", - "image_table_indices": { - "1": "624", - "2": "90", - "3": "317" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[21]", - "node_name": "Lda045", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "281", - "2": "289", - "3": "97" - } - }, - "1213": { - "SLPS_016_0x offset": "420904", - "green_text": "", - "image_table_indices": { - "1": "91", - "2": "278", - "3": "318" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[22]", - "node_name": "Lda046", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "233", - "upgrade_requirement": "1", - "words": { - "1": "211", - "2": "237", - "3": "284" - } - }, - "1214": { - "SLPS_016_0x offset": "434064", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN10.XA[24]", - "node_name": "TaK046", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "220", - "2": "-1", - "3": "-1" - } - }, - "1215": { - "SLPS_016_0x offset": "412424", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F037.STR", - "node_name": "Dc1023", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "60", - "2": "61", - "3": "62" - } - }, - "1216": { - "SLPS_016_0x offset": "414984", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "107", - "2": "201", - "3": "332" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[29]", - "node_name": "Cou030", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "26", - "2": "180", - "3": "64" - } - }, - "1217": { - "SLPS_016_0x offset": "415024", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "108", - "2": "333", - "3": "202" - }, - "is_hidden": "0", - "media_file": "LAIN01.XA[30]", - "node_name": "Cou031", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "86", - "upgrade_requirement": "2", - "words": { - "1": "65", - "2": "181", - "3": "182" - } - }, - "1218": { - "SLPS_016_0x offset": "416824", - "green_text": "", - "image_table_indices": { - "1": "535", - "2": "432", - "3": "383" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[28]", - "node_name": "Dia023", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "86", - "upgrade_requirement": "2", - "words": { - "1": "134", - "2": "180", - "3": "5" - } - }, - "1219": { - "SLPS_016_0x offset": "434144", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN10.XA[26]", - "node_name": "TaK048", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "184", - "2": "-1", - "3": "-1" - } - }, - "1220": { - "SLPS_016_0x offset": "420944", - "green_text": "", - "image_table_indices": { - "1": "96", - "2": "319", - "3": "481" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[23]", - "node_name": "Lda047", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "258", - "2": "27", - "3": "195" - } - }, - "1221": { - "SLPS_016_0x offset": "420984", - "green_text": "", - "image_table_indices": { - "1": "345", - "2": "97", - "3": "482" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[24]", - "node_name": "Lda048", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "213", - "2": "227", - "3": "283" - } - }, - "1223": { - "SLPS_016_0x offset": "434304", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN10.XA[30]", - "node_name": "TaK052", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "102", - "2": "-1", - "3": "-1" - } - }, - "1300": { - "SLPS_016_0x offset": "421144", - "green_text": "", - "image_table_indices": { - "1": "113", - "2": "485", - "3": "459" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[28]", - "node_name": "Lda052", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "239", - "upgrade_requirement": "1", - "words": { - "1": "140", - "2": "142", - "3": "289" - } - }, - "1302": { - "SLPS_016_0x offset": "434184", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN10.XA[27]", - "node_name": "TaK049", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "133", - "2": "-1", - "3": "-1" - } - }, - "1303": { - "SLPS_016_0x offset": "438024", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[28]", - "node_name": "TaK145", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "10", - "2": "-1", - "3": "-1" - } - }, - "1305": { - "SLPS_016_0x offset": "421024", - "green_text": "", - "image_table_indices": { - "1": "10", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[25]", - "node_name": "Lda049", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "290", - "2": "195", - "3": "291" - } - }, - "1306": { - "SLPS_016_0x offset": "421064", - "green_text": "", - "image_table_indices": { - "1": "483", - "2": "436", - "3": "100" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[26]", - "node_name": "Lda050", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "237", - "upgrade_requirement": "2", - "words": { - "1": "292", - "2": "113", - "3": "218" - } - }, - "1307": { - "SLPS_016_0x offset": "421104", - "green_text": "", - "image_table_indices": { - "1": "484", - "2": "101", - "3": "444" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[27]", - "node_name": "Lda051", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "291", - "2": "219", - "3": "206" - } - }, - "1308": { - "SLPS_016_0x offset": "421264", - "green_text": "", - "image_table_indices": { - "1": "784", - "2": "493", - "3": "128" - }, - "is_hidden": "0", - "media_file": "LAIN04.XA[31]", - "node_name": "Lda055", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "242", - "upgrade_requirement": "2", - "words": { - "1": "65", - "2": "20", - "3": "113" - } - }, - "1309": { - "SLPS_016_0x offset": "412264", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F033.STR", - "node_name": "Dc1019", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "20", - "2": "51", - "3": "52" - } - }, - "1310": { - "SLPS_016_0x offset": "434224", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN10.XA[28]", - "node_name": "TaK050", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "23", - "2": "-1", - "3": "-1" - } - }, - "1312": { - "SLPS_016_0x offset": "434264", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN10.XA[29]", - "node_name": "TaK051", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "37", - "2": "-1", - "3": "-1" - } - }, - "1313": { - "SLPS_016_0x offset": "438064", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[29]", - "node_name": "TaK146", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "263", - "2": "-1", - "3": "-1" - } - }, - "1314": { - "SLPS_016_0x offset": "421184", - "green_text": "", - "image_table_indices": { - "1": "120", - "2": "288", - "3": "486" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[29]", - "node_name": "Lda053", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "293", - "2": "59", - "3": "142" - } - }, - "1315": { - "SLPS_016_0x offset": "421224", - "green_text": "", - "image_table_indices": { - "1": "626", - "2": "127", - "3": "489" - }, - "is_hidden": "3", - "media_file": "LAIN04.XA[30]", - "node_name": "Lda054", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "62", - "2": "294", - "3": "60" - } - }, - "1317": { - "SLPS_016_0x offset": "421304", - "green_text": "", - "image_table_indices": { - "1": "494", - "2": "420", - "3": "129" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[0]", - "node_name": "Lda056", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "113", - "2": "295", - "3": "37" - } - }, - "1318": { - "SLPS_016_0x offset": "421344", - "green_text": "", - "image_table_indices": { - "1": "232", - "2": "130", - "3": "671" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[1]", - "node_name": "Lda057", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "296", - "2": "278", - "3": "42" - } - }, - "1319": { - "SLPS_016_0x offset": "421384", - "green_text": "", - "image_table_indices": { - "1": "131", - "2": "497", - "3": "672" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[2]", - "node_name": "Lda058", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "151", - "2": "296", - "3": "297" - } - }, - "1320": { - "SLPS_016_0x offset": "421424", - "green_text": "", - "image_table_indices": { - "1": "132", - "2": "675", - "3": "499" - }, - "is_hidden": "0", - "media_file": "LAIN05.XA[3]", - "node_name": "Lda059", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "246", - "upgrade_requirement": "2", - "words": { - "1": "83", - "2": "13", - "3": "7" - } - }, - "1321": { - "SLPS_016_0x offset": "415064", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "334", - "2": "109", - "3": "236" - }, - "is_hidden": "3", - "media_file": "LAIN01.XA[31]", - "node_name": "Cou032", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "54", - "2": "183", - "3": "128" - } - }, - "1322": { - "SLPS_016_0x offset": "415104", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "336", - "2": "244", - "3": "110" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[0]", - "node_name": "Cou033", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "88", - "upgrade_requirement": "2", - "words": { - "1": "5", - "2": "145", - "3": "184" - } - }, - "1323": { - "SLPS_016_0x offset": "416864", - "green_text": "", - "image_table_indices": { - "1": "433", - "2": "537", - "3": "384" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[29]", - "node_name": "Dia024", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "88", - "upgrade_requirement": "2", - "words": { - "1": "69", - "2": "207", - "3": "52" - } - }, - "1400": { - "SLPS_016_0x offset": "439784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[12]", - "node_name": "P2-04", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "9", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1402": { - "SLPS_016_0x offset": "421464", - "green_text": "", - "image_table_indices": { - "1": "676", - "2": "134", - "3": "500" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[4]", - "node_name": "Lda060", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "298", - "2": "297", - "3": "82" - } - }, - "1403": { - "SLPS_016_0x offset": "421504", - "green_text": "", - "image_table_indices": { - "1": "681", - "2": "503", - "3": "135" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[5]", - "node_name": "Lda061", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "283", - "2": "299", - "3": "165" - } - }, - "1406": { - "SLPS_016_0x offset": "434344", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN10.XA[31]", - "node_name": "TaK053", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "328", - "2": "-1", - "3": "-1" - } - }, - "1408": { - "SLPS_016_0x offset": "412184", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F027.STR", - "node_name": "Dc1017", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "46", - "2": "47", - "3": "29" - } - }, - "1409": { - "SLPS_016_0x offset": "434384", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[0]", - "node_name": "TaK054", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "250", - "2": "-1", - "3": "-1" - } - }, - "1410": { - "SLPS_016_0x offset": "438144", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN12.XA[31]", - "node_name": "TaK148", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "141", - "2": "-1", - "3": "-1" - } - }, - "1411": { - "SLPS_016_0x offset": "421544", - "green_text": "", - "image_table_indices": { - "1": "11", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[6]", - "node_name": "Lda062", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "49", - "2": "45", - "3": "140" - } - }, - "1412": { - "SLPS_016_0x offset": "421584", - "green_text": "", - "image_table_indices": { - "1": "505", - "2": "136", - "3": "683" - }, - "is_hidden": "0", - "media_file": "LAIN05.XA[7]", - "node_name": "Lda063", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "250", - "upgrade_requirement": "2", - "words": { - "1": "300", - "2": "23", - "3": "177" - } - }, - "1414": { - "SLPS_016_0x offset": "434424", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[1]", - "node_name": "TaK055", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "223", - "2": "-1", - "3": "-1" - } - }, - "1415": { - "SLPS_016_0x offset": "438104", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN12.XA[30]", - "node_name": "TaK147", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "279", - "2": "-1", - "3": "-1" - } - }, - "1416": { - "SLPS_016_0x offset": "434464", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[2]", - "node_name": "TaK056", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "191", - "2": "-1", - "3": "-1" - } - }, - "1417": { - "SLPS_016_0x offset": "438184", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[0]", - "node_name": "TaK149", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "294", - "2": "-1", - "3": "-1" - } - }, - "1418": { - "SLPS_016_0x offset": "439824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[13]", - "node_name": "P2-05", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "9", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1419": { - "SLPS_016_0x offset": "434504", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN11.XA[3]", - "node_name": "TaK057", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "215", - "2": "-1", - "3": "-1" - } - }, - "1420": { - "SLPS_016_0x offset": "421624", - "green_text": "", - "image_table_indices": { - "1": "137", - "2": "506", - "3": "684" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[8]", - "node_name": "Lda064", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "219", - "2": "301", - "3": "186" - } - }, - "1421": { - "SLPS_016_0x offset": "421664", - "green_text": "", - "image_table_indices": { - "1": "138", - "2": "685", - "3": "508" - }, - "is_hidden": "0", - "media_file": "LAIN05.XA[9]", - "node_name": "Lda065", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "252", - "upgrade_requirement": "2", - "words": { - "1": "241", - "2": "282", - "3": "195" - } - }, - "1422": { - "SLPS_016_0x offset": "411584", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F002.STR", - "node_name": "Dc1002", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "3", - "2": "4", - "3": "5" - } - }, - "1500": { - "SLPS_016_0x offset": "411624", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F003.STR", - "node_name": "Dc1003", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "6", - "2": "7", - "3": "8" - } - }, - "1502": { - "SLPS_016_0x offset": "434544", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[4]", - "node_name": "TaK058", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "73", - "2": "-1", - "3": "-1" - } - }, - "1503": { - "SLPS_016_0x offset": "438224", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN13.XA[1]", - "node_name": "TaK150", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "65", - "2": "-1", - "3": "-1" - } - }, - "1505": { - "SLPS_016_0x offset": "421704", - "green_text": "", - "image_table_indices": { - "1": "690", - "2": "139", - "3": "509" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[10]", - "node_name": "Lda066", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "186", - "2": "302", - "3": "303" - } - }, - "1506": { - "SLPS_016_0x offset": "421744", - "green_text": "", - "image_table_indices": { - "1": "695", - "2": "510", - "3": "141" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[11]", - "node_name": "Lda067", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "257", - "2": "186", - "3": "302" - } - }, - "1507": { - "SLPS_016_0x offset": "421784", - "green_text": "", - "image_table_indices": { - "1": "343", - "2": "697", - "3": "142" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[12]", - "node_name": "Lda068", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "304", - "2": "5", - "3": "254" - } - }, - "1508": { - "SLPS_016_0x offset": "421904", - "green_text": "", - "image_table_indices": { - "1": "147", - "2": "700", - "3": "513" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[15]", - "node_name": "Lda071", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "305", - "2": "205", - "3": "278" - } - }, - "1509": { - "SLPS_016_0x offset": "421944", - "green_text": "", - "image_table_indices": { - "1": "705", - "2": "148", - "3": "515" - }, - "is_hidden": "16", - "media_file": "LAIN05.XA[16]", - "node_name": "Lda072", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "259", - "upgrade_requirement": "2", - "words": { - "1": "145", - "2": "89", - "3": "2" - } - }, - "1510": { - "SLPS_016_0x offset": "415144", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "246", - "2": "338", - "3": "111" - }, - "is_hidden": "3", - "media_file": "LAIN02.XA[1]", - "node_name": "Cou034", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "16", - "2": "185", - "3": "186" - } - }, - "1511": { - "SLPS_016_0x offset": "416904", - "green_text": "", - "image_table_indices": { - "1": "434", - "2": "385", - "3": "540" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[30]", - "node_name": "Dia025", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "90", - "upgrade_requirement": "2", - "words": { - "1": "65", - "2": "135", - "3": "43" - } - }, - "1512": { - "SLPS_016_0x offset": "411704", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F006.STR", - "node_name": "Dc1005", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "12", - "2": "13", - "3": "14" - } - }, - "1513": { - "SLPS_016_0x offset": "434584", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[5]", - "node_name": "TaK059", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "92", - "2": "-1", - "3": "-1" - } - }, - "1514": { - "SLPS_016_0x offset": "421824", - "green_text": "", - "image_table_indices": { - "1": "511", - "2": "143", - "3": "698" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[13]", - "node_name": "Lda069", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "5", - "2": "237", - "3": "81" - } - }, - "1515": { - "SLPS_016_0x offset": "421864", - "green_text": "", - "image_table_indices": { - "1": "146", - "2": "512", - "3": "699" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[14]", - "node_name": "Lda070", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "5", - "2": "280", - "3": "195" - } - }, - "1516": { - "SLPS_016_0x offset": "422024", - "green_text": "", - "image_table_indices": { - "1": "525", - "2": "707", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN05.XA[18]", - "node_name": "Lda074", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "261", - "upgrade_requirement": "2", - "words": { - "1": "145", - "2": "18", - "3": "82" - } - }, - "1517": { - "SLPS_016_0x offset": "422064", - "green_text": "", - "image_table_indices": { - "1": "149", - "2": "526", - "3": "708" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[19]", - "node_name": "Lda075", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "150", - "2": "295", - "3": "307" - } - }, - "1518": { - "SLPS_016_0x offset": "411744", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F008.STR", - "node_name": "Dc1006", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "15", - "2": "16", - "3": "17" - } - }, - "1520": { - "SLPS_016_0x offset": "434624", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[6]", - "node_name": "TaK060", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "157", - "2": "-1", - "3": "-1" - } - }, - "1521": { - "SLPS_016_0x offset": "438264", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[2]", - "node_name": "TaK151", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "317", - "2": "-1", - "3": "-1" - } - }, - "1523": { - "SLPS_016_0x offset": "421984", - "green_text": "", - "image_table_indices": { - "1": "12", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[17]", - "node_name": "Lda073", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "306", - "2": "290", - "3": "287" - } - }, - "1600": { - "SLPS_016_0x offset": "422104", - "green_text": "", - "image_table_indices": { - "1": "151", - "2": "709", - "3": "527" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[20]", - "node_name": "Lda076", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "195", - "2": "138", - "3": "137" - } - }, - "1601": { - "SLPS_016_0x offset": "422144", - "green_text": "", - "image_table_indices": { - "1": "710", - "2": "152", - "3": "530" - }, - "is_hidden": "0", - "media_file": "LAIN05.XA[21]", - "node_name": "Lda077", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "264", - "upgrade_requirement": "2", - "words": { - "1": "195", - "2": "177", - "3": "63" - } - }, - "1602": { - "SLPS_016_0x offset": "422184", - "green_text": "", - "image_table_indices": { - "1": "711", - "2": "534", - "3": "153" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[22]", - "node_name": "Lda078", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "277", - "2": "257", - "3": "250" - } - }, - "1603": { - "SLPS_016_0x offset": "422224", - "green_text": "", - "image_table_indices": { - "1": "538", - "2": "712", - "3": "156" - }, - "is_hidden": "16", - "media_file": "LAIN05.XA[23]", - "node_name": "Lda079", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "266", - "upgrade_requirement": "2", - "words": { - "1": "162", - "2": "5", - "3": "282" - } - }, - "1604": { - "SLPS_016_0x offset": "434664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[7]", - "node_name": "TaK061", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "330", - "2": "-1", - "3": "-1" - } - }, - "1605": { - "SLPS_016_0x offset": "415184", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "247", - "2": "112", - "3": "339" - }, - "is_hidden": "3", - "media_file": "LAIN02.XA[2]", - "node_name": "Cou035", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "187", - "2": "188", - "3": "189" - } - }, - "1606": { - "SLPS_016_0x offset": "411784", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F010.STR", - "node_name": "Dc1007", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "18", - "2": "19", - "3": "20" - } - }, - "1607": { - "SLPS_016_0x offset": "416944", - "green_text": "", - "image_table_indices": { - "1": "386", - "2": "435", - "3": "557" - }, - "is_hidden": "0", - "media_file": "LAIN02.XA[31]", - "node_name": "Dia026", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "91", - "upgrade_requirement": "2", - "words": { - "1": "187", - "2": "224", - "3": "189" - } - }, - "1608": { - "SLPS_016_0x offset": "411944", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F015.STR", - "node_name": "Dc1011", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "30", - "2": "31", - "3": "32" - } - }, - "1609": { - "SLPS_016_0x offset": "422264", - "green_text": "", - "image_table_indices": { - "1": "422", - "2": "157", - "3": "713" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[24]", - "node_name": "Lda080", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "280", - "2": "206", - "3": "277" - } - }, - "1610": { - "SLPS_016_0x offset": "422304", - "green_text": "", - "image_table_indices": { - "1": "158", - "2": "541", - "3": "714" - }, - "is_hidden": "16", - "media_file": "LAIN05.XA[25]", - "node_name": "Lda081", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "268", - "upgrade_requirement": "2", - "words": { - "1": "308", - "2": "23", - "3": "140" - } - }, - "1611": { - "SLPS_016_0x offset": "422344", - "green_text": "", - "image_table_indices": { - "1": "159", - "2": "715", - "3": "542" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[26]", - "node_name": "Lda082", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "73", - "2": "309", - "3": "307" - } - }, - "1612": { - "SLPS_016_0x offset": "422384", - "green_text": "", - "image_table_indices": { - "1": "716", - "2": "160", - "3": "543" - }, - "is_hidden": "16", - "media_file": "LAIN05.XA[27]", - "node_name": "Lda083", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "270", - "upgrade_requirement": "2", - "words": { - "1": "55", - "2": "216", - "3": "310" - } - }, - "1614": { - "SLPS_016_0x offset": "434704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[8]", - "node_name": "TaK062", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "327", - "2": "-1", - "3": "-1" - } - }, - "1615": { - "SLPS_016_0x offset": "438304", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[3]", - "node_name": "TaK152", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "324", - "2": "-1", - "3": "-1" - } - }, - "1618": { - "SLPS_016_0x offset": "422424", - "green_text": "", - "image_table_indices": { - "1": "13", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN05.XA[28]", - "node_name": "Lda084", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "186", - "2": "269", - "3": "311" - } - }, - "1619": { - "SLPS_016_0x offset": "422464", - "green_text": "", - "image_table_indices": { - "1": "552", - "2": "717", - "3": "161" - }, - "is_hidden": "16", - "media_file": "LAIN05.XA[29]", - "node_name": "Lda085", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "272", - "upgrade_requirement": "2", - "words": { - "1": "312", - "2": "65", - "3": "55" - } - }, - "1620": { - "SLPS_016_0x offset": "422504", - "green_text": "", - "image_table_indices": { - "1": "554", - "2": "162", - "3": "718" - }, - "is_hidden": "3", - "media_file": "LAIN05.XA[30]", - "node_name": "Lda086", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "295", - "2": "293", - "3": "165" - } - }, - "1621": { - "SLPS_016_0x offset": "422544", - "green_text": "", - "image_table_indices": { - "1": "168", - "2": "560", - "3": "719" - }, - "is_hidden": "16", - "media_file": "LAIN05.XA[31]", - "node_name": "Lda087", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "274", - "upgrade_requirement": "2", - "words": { - "1": "165", - "2": "221", - "3": "205" - } - }, - "1622": { - "SLPS_016_0x offset": "411984", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F020.STR", - "node_name": "Dc1012", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "33", - "2": "34", - "3": "35" - } - }, - "1700": { - "SLPS_016_0x offset": "440024", - "green_text": "mT up-date App.", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\INS04.STR", - "node_name": "SSkn04", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, - "site": "A", - "type": "7", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1701": { - "SLPS_016_0x offset": "439624", - "green_text": "nT APPLICATION", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[8]", - "node_name": "GaTE04", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, - "site": "A", - "type": "8", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1703": { - "SLPS_016_0x offset": "422584", - "green_text": "", - "image_table_indices": { - "1": "423", - "2": "720", - "3": "563" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[0]", - "node_name": "Lda088", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "313", - "2": "92", - "3": "137" - } - }, - "1704": { - "SLPS_016_0x offset": "422624", - "green_text": "", - "image_table_indices": { - "1": "721", - "2": "169", - "3": "573" - }, - "is_hidden": "16", - "media_file": "LAIN06.XA[1]", - "node_name": "Lda089", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "276", - "upgrade_requirement": "2", - "words": { - "1": "186", - "2": "23", - "3": "205" - } - }, - "1705": { - "SLPS_016_0x offset": "422664", - "green_text": "", - "image_table_indices": { - "1": "722", - "2": "574", - "3": "172" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[2]", - "node_name": "Lda090", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "22", - "2": "306", - "3": "314" - } - }, - "1707": { - "SLPS_016_0x offset": "412304", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F034.STR", - "node_name": "Dc1020", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "53", - "2": "54", - "3": "55" - } - }, - "1709": { - "SLPS_016_0x offset": "434744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[9]", - "node_name": "TaK063", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "82", - "2": "-1", - "3": "-1" - } - }, - "1710": { - "SLPS_016_0x offset": "438344", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN13.XA[4]", - "node_name": "TaK153", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "275", - "2": "-1", - "3": "-1" - } - }, - "1711": { - "SLPS_016_0x offset": "434784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[10]", - "node_name": "TaK064", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "333", - "2": "-1", - "3": "-1" - } - }, - "1712": { - "SLPS_016_0x offset": "422704", - "green_text": "", - "image_table_indices": { - "1": "575", - "2": "723", - "3": "203" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[3]", - "node_name": "Lda091", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "61", - "2": "62", - "3": "315" - } - }, - "1713": { - "SLPS_016_0x offset": "422744", - "green_text": "", - "image_table_indices": { - "1": "576", - "2": "207", - "3": "724" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[4]", - "node_name": "Lda092", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "316", - "2": "89", - "3": "110" - } - }, - "1714": { - "SLPS_016_0x offset": "422784", - "green_text": "", - "image_table_indices": { - "1": "208", - "2": "581", - "3": "725" - }, - "is_hidden": "0", - "media_file": "LAIN06.XA[5]", - "node_name": "Lda093", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "280", - "upgrade_requirement": "2", - "words": { - "1": "176", - "2": "5", - "3": "317" - } - }, - "1716": { - "SLPS_016_0x offset": "422944", - "green_text": "", - "image_table_indices": { - "1": "590", - "2": "729", - "3": "212" - }, - "is_hidden": "16", - "media_file": "LAIN06.XA[9]", - "node_name": "Lda097", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "284", - "upgrade_requirement": "2", - "words": { - "1": "45", - "2": "102", - "3": "318" - } - }, - "1717": { - "SLPS_016_0x offset": "412064", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F024.STR", - "node_name": "Dc1014", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "39", - "2": "40", - "3": "41" - } - }, - "1719": { - "SLPS_016_0x offset": "434824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[11]", - "node_name": "TaK065", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "107", - "2": "-1", - "3": "-1" - } - }, - "1720": { - "SLPS_016_0x offset": "438384", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN13.XA[5]", - "node_name": "TaK154", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "406", - "2": "-1", - "3": "-1" - } - }, - "1721": { - "SLPS_016_0x offset": "422824", - "green_text": "", - "image_table_indices": { - "1": "424", - "2": "726", - "3": "587" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[6]", - "node_name": "Lda094", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "248", - "2": "69", - "3": "136" - } - }, - "1722": { - "SLPS_016_0x offset": "422864", - "green_text": "", - "image_table_indices": { - "1": "727", - "2": "209", - "3": "588" - }, - "is_hidden": "16", - "media_file": "LAIN06.XA[7]", - "node_name": "Lda095", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "282", - "upgrade_requirement": "2", - "words": { - "1": "145", - "2": "8", - "3": "59" - } - }, - "1723": { - "SLPS_016_0x offset": "422904", - "green_text": "", - "image_table_indices": { - "1": "728", - "2": "589", - "3": "210" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[8]", - "node_name": "Lda096", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "247", - "2": "304", - "3": "272" - } - }, - "1800": { - "SLPS_016_0x offset": "423064", - "green_text": "", - "image_table_indices": { - "1": "215", - "2": "732", - "3": "597" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[12]", - "node_name": "Lda100", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "271", - "2": "303", - "3": "160" - } - }, - "1801": { - "SLPS_016_0x offset": "423104", - "green_text": "", - "image_table_indices": { - "1": "302", - "2": "216", - "3": "598" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[13]", - "node_name": "Lda101", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "95", - "2": "62", - "3": "292" - } - }, - "1804": { - "SLPS_016_0x offset": "434864", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[12]", - "node_name": "TaK066", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "2", - "2": "-1", - "3": "-1" - } - }, - "1806": { - "SLPS_016_0x offset": "422984", - "green_text": "", - "image_table_indices": { - "1": "591", - "2": "213", - "3": "730" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[10]", - "node_name": "Lda098", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "257", - "2": "35", - "3": "136" - } - }, - "1807": { - "SLPS_016_0x offset": "423024", - "green_text": "", - "image_table_indices": { - "1": "214", - "2": "-1", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN06.XA[11]", - "node_name": "Lda099", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "286", - "upgrade_requirement": "2", - "words": { - "1": "292", - "2": "15", - "3": "319" - } - }, - "1808": { - "SLPS_016_0x offset": "423184", - "green_text": "", - "image_table_indices": { - "1": "601", - "2": "734", - "3": "218" - }, - "is_hidden": "16", - "media_file": "LAIN06.XA[15]", - "node_name": "Lda103", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "290", - "upgrade_requirement": "3", - "words": { - "1": "65", - "2": "43", - "3": "143" - } - }, - "1809": { - "SLPS_016_0x offset": "423224", - "green_text": "", - "image_table_indices": { - "1": "602", - "2": "219", - "3": "735" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[16]", - "node_name": "Lda104", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "313", - "2": "320", - "3": "321" - } - }, - "1810": { - "SLPS_016_0x offset": "423264", - "green_text": "", - "image_table_indices": { - "1": "221", - "2": "603", - "3": "736" - }, - "is_hidden": "16", - "media_file": "LAIN06.XA[17]", - "node_name": "Lda105", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "292", - "upgrade_requirement": "3", - "words": { - "1": "322", - "2": "186", - "3": "287" - } - }, - "1811": { - "SLPS_016_0x offset": "434904", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[13]", - "node_name": "TaK067", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "156", - "2": "-1", - "3": "-1" - } - }, - "1812": { - "SLPS_016_0x offset": "438424", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[6]", - "node_name": "TaK155", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "20", - "2": "-1", - "3": "-1" - } - }, - "1813": { - "SLPS_016_0x offset": "434944", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN11.XA[14]", - "node_name": "TaK068", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "275", - "2": "-1", - "3": "-1" - } - }, - "1815": { - "SLPS_016_0x offset": "423144", - "green_text": "", - "image_table_indices": { - "1": "733", - "2": "599", - "3": "217" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[14]", - "node_name": "Lda102", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "186", - "2": "110", - "3": "315" - } - }, - "1816": { - "SLPS_016_0x offset": "423304", - "green_text": "", - "image_table_indices": { - "1": "222", - "2": "737", - "3": "604" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[18]", - "node_name": "Lda106", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "113", - "2": "286", - "3": "323" - } - }, - "1817": { - "SLPS_016_0x offset": "423344", - "green_text": "", - "image_table_indices": { - "1": "738", - "2": "223", - "3": "606" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[19]", - "node_name": "Lda107", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "37", - "2": "4", - "3": "237" - } - }, - "1818": { - "SLPS_016_0x offset": "423384", - "green_text": "", - "image_table_indices": { - "1": "739", - "2": "609", - "3": "224" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[20]", - "node_name": "Lda108", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "306", - "2": "313", - "3": "47" - } - }, - "1819": { - "SLPS_016_0x offset": "434984", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[15]", - "node_name": "TaK069", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "254", - "2": "-1", - "3": "-1" - } - }, - "1820": { - "SLPS_016_0x offset": "438464", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN13.XA[7]", - "node_name": "TaK156", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "97", - "2": "-1", - "3": "-1" - } - }, - "1821": { - "SLPS_016_0x offset": "435024", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[16]", - "node_name": "TaK070", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "172", - "2": "-1", - "3": "-1" - } - }, - "1822": { - "SLPS_016_0x offset": "435064", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[17]", - "node_name": "TaK071", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "73", - "2": "-1", - "3": "-1" - } - }, - "1823": { - "SLPS_016_0x offset": "438504", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN13.XA[8]", - "node_name": "TaK157", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "249", - "2": "-1", - "3": "-1" - } - }, - "1901": { - "SLPS_016_0x offset": "423424", - "green_text": "", - "image_table_indices": { - "1": "610", - "2": "740", - "3": "225" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[21]", - "node_name": "Lda109", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "257", - "2": "324", - "3": "179" - } - }, - "1902": { - "SLPS_016_0x offset": "423464", - "green_text": "", - "image_table_indices": { - "1": "611", - "2": "226", - "3": "741" - }, - "is_hidden": "0", - "media_file": "LAIN06.XA[22]", - "node_name": "Lda110", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "297", - "upgrade_requirement": "3", - "words": { - "1": "69", - "2": "307", - "3": "257" - } - }, - "1903": { - "SLPS_016_0x offset": "423504", - "green_text": "", - "image_table_indices": { - "1": "227", - "2": "612", - "3": "742" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[23]", - "node_name": "Lda111", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "208", - "2": "37", - "3": "289" - } - }, - "1904": { - "SLPS_016_0x offset": "423544", - "green_text": "", - "image_table_indices": { - "1": "228", - "2": "743", - "3": "614" - }, - "is_hidden": "0", - "media_file": "LAIN06.XA[24]", - "node_name": "Lda112", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "299", - "upgrade_requirement": "3", - "words": { - "1": "195", - "2": "219", - "3": "201" - } - }, - "1905": { - "SLPS_016_0x offset": "435104", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[18]", - "node_name": "TaK072", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "331", - "2": "-1", - "3": "-1" - } - }, - "1906": { - "SLPS_016_0x offset": "435144", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[19]", - "node_name": "TaK073", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "102", - "2": "-1", - "3": "-1" - } - }, - "1907": { - "SLPS_016_0x offset": "438544", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN13.XA[9]", - "node_name": "TaK158", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "387", - "2": "-1", - "3": "-1" - } - }, - "1908": { - "SLPS_016_0x offset": "435224", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[21]", - "node_name": "TaK075", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "275", - "2": "-1", - "3": "-1" - } - }, - "1909": { - "SLPS_016_0x offset": "438584", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN13.XA[10]", - "node_name": "TaK159", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "89", - "2": "-1", - "3": "-1" - } - }, - "1910": { - "SLPS_016_0x offset": "423584", - "green_text": "", - "image_table_indices": { - "1": "731", - "2": "229", - "3": "615" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[25]", - "node_name": "Lda113", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "169", - "2": "23", - "3": "81" - } - }, - "1911": { - "SLPS_016_0x offset": "423624", - "green_text": "", - "image_table_indices": { - "1": "745", - "2": "616", - "3": "230" - }, - "is_hidden": "0", - "media_file": "LAIN06.XA[26]", - "node_name": "Lda114", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "301", - "upgrade_requirement": "3", - "words": { - "1": "169", - "2": "102", - "3": "325" - } - }, - "1912": { - "SLPS_016_0x offset": "423664", - "green_text": "", - "image_table_indices": { - "1": "617", - "2": "746", - "3": "233" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[27]", - "node_name": "Lda115", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "323", - "2": "107", - "3": "288" - } - }, - "1913": { - "SLPS_016_0x offset": "423704", - "green_text": "", - "image_table_indices": { - "1": "619", - "2": "234", - "3": "747" - }, - "is_hidden": "0", - "media_file": "LAIN06.XA[28]", - "node_name": "Lda116", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "303", - "upgrade_requirement": "2", - "words": { - "1": "309", - "2": "55", - "3": "266" - } - }, - "1914": { - "SLPS_016_0x offset": "412344", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F035.STR", - "node_name": "Dc1021", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "56", - "2": "8", - "3": "35" - } - }, - "1915": { - "SLPS_016_0x offset": "435184", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[20]", - "node_name": "TaK074", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "166", - "2": "-1", - "3": "-1" - } - }, - "1917": { - "SLPS_016_0x offset": "439864", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "LAIN21.XA[14]", - "node_name": "P2-06", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "9", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "-1", - "2": "-1", - "3": "-1" - } - }, - "1918": { - "SLPS_016_0x offset": "435264", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[22]", - "node_name": "TaK076", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "314", - "2": "-1", - "3": "-1" - } - }, - "1919": { - "SLPS_016_0x offset": "423744", - "green_text": "", - "image_table_indices": { - "1": "270", - "2": "620", - "3": "748" - }, - "is_hidden": "19", - "media_file": "LAIN06.XA[29]", - "node_name": "Lda117", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "295", - "2": "69", - "3": "186" - } - }, - "1920": { - "SLPS_016_0x offset": "423784", - "green_text": "", - "image_table_indices": { - "1": "271", - "2": "749", - "3": "621" - }, - "is_hidden": "16", - "media_file": "LAIN06.XA[30]", - "node_name": "Lda118", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "305", - "upgrade_requirement": "3", - "words": { - "1": "287", - "2": "186", - "3": "326" - } - }, - "1921": { - "SLPS_016_0x offset": "423824", - "green_text": "", - "image_table_indices": { - "1": "750", - "2": "273", - "3": "622" - }, - "is_hidden": "3", - "media_file": "LAIN06.XA[31]", - "node_name": "Lda119", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "295", - "2": "327", - "3": "310" - } - }, - "1922": { - "SLPS_016_0x offset": "423864", - "green_text": "", - "image_table_indices": { - "1": "751", - "2": "623", - "3": "274" - }, - "is_hidden": "0", - "media_file": "LAIN07.XA[0]", - "node_name": "Lda120", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "307", - "upgrade_requirement": "3", - "words": { - "1": "328", - "2": "329", - "3": "330" - } - }, - "2000": { - "SLPS_016_0x offset": "435544", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[29]", - "node_name": "TaK083", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "97", - "2": "-1", - "3": "-1" - } - }, - "2001": { - "SLPS_016_0x offset": "435304", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[23]", - "node_name": "TaK077", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "4", - "2": "-1", - "3": "-1" - } - }, - "2002": { - "SLPS_016_0x offset": "438624", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[11]", - "node_name": "TaK160", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "45", - "2": "-1", - "3": "-1" - } - }, - "2004": { - "SLPS_016_0x offset": "423904", - "green_text": "", - "image_table_indices": { - "1": "479", - "2": "752", - "3": "275" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[1]", - "node_name": "Lda121", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "313", - "2": "135", - "3": "130" - } - }, - "2005": { - "SLPS_016_0x offset": "423944", - "green_text": "", - "image_table_indices": { - "1": "625", - "2": "276", - "3": "753" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[2]", - "node_name": "Lda122", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "309", - "upgrade_requirement": "3", - "words": { - "1": "322", - "2": "55", - "3": "143" - } - }, - "2006": { - "SLPS_016_0x offset": "423984", - "green_text": "", - "image_table_indices": { - "1": "480", - "2": "627", - "3": "754" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[3]", - "node_name": "Lda123", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "32", - "2": "265", - "3": "129" - } - }, - "2007": { - "SLPS_016_0x offset": "424024", - "green_text": "", - "image_table_indices": { - "1": "283", - "2": "755", - "3": "632" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[4]", - "node_name": "Lda124", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "311", - "upgrade_requirement": "3", - "words": { - "1": "331", - "2": "14", - "3": "278" - } - }, - "2008": { - "SLPS_016_0x offset": "424184", - "green_text": "", - "image_table_indices": { - "1": "636", - "2": "287", - "3": "759" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[8]", - "node_name": "Lda128", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "315", - "upgrade_requirement": "3", - "words": { - "1": "288", - "2": "334", - "3": "10" - } - }, - "2009": { - "SLPS_016_0x offset": "412584", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F042.STR", - "node_name": "Dc1027", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "68", - "2": "5", - "3": "69" - } - }, - "2010": { - "SLPS_016_0x offset": "415224", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "122", - "2": "248", - "3": "340" - }, - "is_hidden": "3", - "media_file": "LAIN02.XA[3]", - "node_name": "Cou036", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "153", - "2": "97", - "3": "190" - } - }, - "2011": { - "SLPS_016_0x offset": "416984", - "green_text": "", - "image_table_indices": { - "1": "387", - "2": "567", - "3": "438" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[0]", - "node_name": "Dia027", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "92", - "upgrade_requirement": "2", - "words": { - "1": "225", - "2": "209", - "3": "81" - } - }, - "2012": { - "SLPS_016_0x offset": "435344", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[24]", - "node_name": "TaK078", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "392", - "2": "-1", - "3": "-1" - } - }, - "2013": { - "SLPS_016_0x offset": "424064", - "green_text": "", - "image_table_indices": { - "1": "756", - "2": "284", - "3": "633" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[5]", - "node_name": "Lda125", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "332", - "2": "210", - "3": "298" - } - }, - "2014": { - "SLPS_016_0x offset": "424104", - "green_text": "", - "image_table_indices": { - "1": "757", - "2": "634", - "3": "285" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[6]", - "node_name": "Lda126", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "313", - "upgrade_requirement": "3", - "words": { - "1": "186", - "2": "144", - "3": "333" - } - }, - "2015": { - "SLPS_016_0x offset": "424144", - "green_text": "", - "image_table_indices": { - "1": "635", - "2": "758", - "3": "286" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[7]", - "node_name": "Lda127", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "306", - "2": "17", - "3": "92" - } - }, - "2016": { - "SLPS_016_0x offset": "424304", - "green_text": "", - "image_table_indices": { - "1": "762", - "2": "290", - "3": "639" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[11]", - "node_name": "Lda131", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "274", - "2": "336", - "3": "337" - } - }, - "2017": { - "SLPS_016_0x offset": "424344", - "green_text": "", - "image_table_indices": { - "1": "763", - "2": "640", - "3": "292" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[12]", - "node_name": "Lda132", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "319", - "upgrade_requirement": "3", - "words": { - "1": "55", - "2": "186", - "3": "119" - } - }, - "2019": { - "SLPS_016_0x offset": "435504", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[28]", - "node_name": "TaK082", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "93", - "2": "-1", - "3": "-1" - } - }, - "2020": { - "SLPS_016_0x offset": "435384", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN11.XA[25]", - "node_name": "TaK079", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "89", - "2": "-1", - "3": "-1" - } - }, - "2021": { - "SLPS_016_0x offset": "438664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN13.XA[12]", - "node_name": "TaK161", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "184", - "2": "-1", - "3": "-1" - } - }, - "2022": { - "SLPS_016_0x offset": "424224", - "green_text": "", - "image_table_indices": { - "1": "628", - "2": "637", - "3": "760" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[9]", - "node_name": "Lda129", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "204", - "2": "332", - "3": "335" - } - }, - "2023": { - "SLPS_016_0x offset": "424264", - "green_text": "", - "image_table_indices": { - "1": "289", - "2": "761", - "3": "638" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[10]", - "node_name": "Lda130", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "317", - "upgrade_requirement": "3", - "words": { - "1": "288", - "2": "237", - "3": "97" - } - }, - "2100": { - "SLPS_016_0x offset": "424424", - "green_text": "", - "image_table_indices": { - "1": "642", - "2": "294", - "3": "765" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[14]", - "node_name": "Lda134", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "89", - "2": "320", - "3": "2" - } - }, - "2101": { - "SLPS_016_0x offset": "424464", - "green_text": "", - "image_table_indices": { - "1": "295", - "2": "643", - "3": "766" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[15]", - "node_name": "Lda135", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "21", - "2": "205", - "3": "83" - } - }, - "2102": { - "SLPS_016_0x offset": "424504", - "green_text": "", - "image_table_indices": { - "1": "296", - "2": "767", - "3": "644" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[16]", - "node_name": "Lda136", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "323", - "upgrade_requirement": "3", - "words": { - "1": "205", - "2": "63", - "3": "167" - } - }, - "2104": { - "SLPS_016_0x offset": "435424", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN11.XA[26]", - "node_name": "TaK080", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "181", - "2": "-1", - "3": "-1" - } - }, - "2105": { - "SLPS_016_0x offset": "435464", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN11.XA[27]", - "node_name": "TaK081", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "73", - "2": "-1", - "3": "-1" - } - }, - "2106": { - "SLPS_016_0x offset": "438704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN13.XA[13]", - "node_name": "TaK162", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "254", - "2": "-1", - "3": "-1" - } - }, - "2107": { - "SLPS_016_0x offset": "424384", - "green_text": "", - "image_table_indices": { - "1": "641", - "2": "764", - "3": "293" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[13]", - "node_name": "Lda133", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "64", - "2": "338", - "3": "339" - } - }, - "2108": { - "SLPS_016_0x offset": "424544", - "green_text": "", - "image_table_indices": { - "1": "768", - "2": "297", - "3": "645" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[17]", - "node_name": "Lda137", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "338", - "2": "69", - "3": "299" - } - }, - "2109": { - "SLPS_016_0x offset": "424584", - "green_text": "", - "image_table_indices": { - "1": "629", - "2": "646", - "3": "298" - }, - "is_hidden": "19", - "media_file": "LAIN07.XA[18]", - "node_name": "Lda138", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "124", - "2": "135", - "3": "268" - } - }, - "2110": { - "SLPS_016_0x offset": "424624", - "green_text": "", - "image_table_indices": { - "1": "649", - "2": "771", - "3": "299" - }, - "is_hidden": "16", - "media_file": "LAIN07.XA[19]", - "node_name": "Lda139", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "326", - "upgrade_requirement": "3", - "words": { - "1": "204", - "2": "217", - "3": "12" - } - }, - "2112": { - "SLPS_016_0x offset": "415264", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "140", - "2": "341", - "3": "250" - }, - "is_hidden": "3", - "media_file": "LAIN02.XA[4]", - "node_name": "Cou037", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "70", - "2": "28", - "3": "191" - } - }, - "2113": { - "SLPS_016_0x offset": "417024", - "green_text": "", - "image_table_indices": { - "1": "568", - "2": "388", - "3": "440" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[1]", - "node_name": "Dia028", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "93", - "upgrade_requirement": "2", - "words": { - "1": "226", - "2": "207", - "3": "20" - } - }, - "2115": { - "SLPS_016_0x offset": "438744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "67", - "media_file": "LAIN13.XA[14]", - "node_name": "TaK163", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "398", - "2": "-1", - "3": "-1" - } - }, - "2117": { - "SLPS_016_0x offset": "424664", - "green_text": "", - "image_table_indices": { - "1": "663", - "2": "300", - "3": "772" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[20]", - "node_name": "Lda140", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "280", - "2": "16", - "3": "135" - } - }, - "2118": { - "SLPS_016_0x offset": "424704", - "green_text": "", - "image_table_indices": { - "1": "301", - "2": "650", - "3": "773" - }, - "is_hidden": "0", - "media_file": "LAIN07.XA[21]", - "node_name": "Lda141", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "328", - "upgrade_requirement": "3", - "words": { - "1": "135", - "2": "92", - "3": "105" - } - }, - "2119": { - "SLPS_016_0x offset": "424744", - "green_text": "", - "image_table_indices": { - "1": "231", - "2": "774", - "3": "652" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[22]", - "node_name": "Lda142", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "9", - "2": "107", - "3": "154" - } - }, - "2120": { - "SLPS_016_0x offset": "424784", - "green_text": "", - "image_table_indices": { - "1": "775", - "2": "303", - "3": "653" - }, - "is_hidden": "0", - "media_file": "LAIN07.XA[23]", - "node_name": "Lda143", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "330", - "upgrade_requirement": "3", - "words": { - "1": "288", - "2": "337", - "3": "340" - } - }, - "2121": { - "SLPS_016_0x offset": "435624", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN11.XA[31]", - "node_name": "TaK085", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "2", - "2": "-1", - "3": "-1" - } - }, - "2200": { - "SLPS_016_0x offset": "435584", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN11.XA[30]", - "node_name": "TaK084", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "92", - "2": "-1", - "3": "-1" - } - }, - "2201": { - "SLPS_016_0x offset": "438784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[15]", - "node_name": "TaK164", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "237", - "2": "-1", - "3": "-1" - } - }, - "2202": { - "SLPS_016_0x offset": "424824", - "green_text": "", - "image_table_indices": { - "1": "776", - "2": "654", - "3": "304" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[24]", - "node_name": "Lda144", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "307", - "2": "144", - "3": "222" - } - }, - "2203": { - "SLPS_016_0x offset": "424864", - "green_text": "", - "image_table_indices": { - "1": "656", - "2": "777", - "3": "305" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[25]", - "node_name": "Lda145", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "119", - "2": "195", - "3": "307" - } - }, - "2204": { - "SLPS_016_0x offset": "424904", - "green_text": "", - "image_table_indices": { - "1": "657", - "2": "306", - "3": "778" - }, - "is_hidden": "0", - "media_file": "LAIN07.XA[26]", - "node_name": "Lda146", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "333", - "upgrade_requirement": "3", - "words": { - "1": "43", - "2": "169", - "3": "2" - } - }, - "2205": { - "SLPS_016_0x offset": "435664", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN12.XA[0]", - "node_name": "TaK086", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "62", - "2": "-1", - "3": "-1" - } - }, - "2207": { - "SLPS_016_0x offset": "438824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN13.XA[16]", - "node_name": "TaK165", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "393", - "2": "-1", - "3": "-1" - } - }, - "2208": { - "SLPS_016_0x offset": "435704", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "19", - "media_file": "LAIN12.XA[1]", - "node_name": "TaK087", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "273", - "2": "-1", - "3": "-1" - } - }, - "2209": { - "SLPS_016_0x offset": "435744", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN12.XA[2]", - "node_name": "TaK088", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "360", - "2": "-1", - "3": "-1" - } - }, - "2210": { - "SLPS_016_0x offset": "438864", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "51", - "media_file": "LAIN13.XA[17]", - "node_name": "TaK166", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "390", - "2": "-1", - "3": "-1" - } - }, - "2211": { - "SLPS_016_0x offset": "424944", - "green_text": "", - "image_table_indices": { - "1": "307", - "2": "659", - "3": "779" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[27]", - "node_name": "Lda147", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "210", - "2": "278", - "3": "91" - } - }, - "2212": { - "SLPS_016_0x offset": "424984", - "green_text": "", - "image_table_indices": { - "1": "308", - "2": "780", - "3": "-1" - }, - "is_hidden": "0", - "media_file": "LAIN07.XA[28]", - "node_name": "Lda148", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "335", - "upgrade_requirement": "3", - "words": { - "1": "341", - "2": "285", - "3": "205" - } - }, - "2214": { - "SLPS_016_0x offset": "435824", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN12.XA[4]", - "node_name": "TaK090", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "50", - "2": "-1", - "3": "-1" - } - }, - "2215": { - "SLPS_016_0x offset": "438904", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "35", - "media_file": "LAIN13.XA[18]", - "node_name": "TaK167", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "341", - "2": "-1", - "3": "-1" - } - }, - "2216": { - "SLPS_016_0x offset": "435784", - "green_text": "", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "83", - "media_file": "LAIN12.XA[3]", - "node_name": "TaK089", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, - "site": "A", - "type": "6", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "107", - "2": "-1", - "3": "-1" - } - }, - "2217": { - "SLPS_016_0x offset": "412464", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F038.STR", - "node_name": "Dc1024", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "63", - "2": "64", - "3": "5" - } - }, - "2218": { - "SLPS_016_0x offset": "430304", - "green_text": "TOUKO's DIARY", - "image_table_indices": { - "1": "369", - "2": "605", - "3": "126" - }, - "is_hidden": "3", - "media_file": "LAIN09.XA[10]", - "node_name": "Tda044", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, - "site": "A", - "type": "2", - "unlocked_by": "-1", - "upgrade_requirement": "0", - "words": { - "1": "381", - "2": "404", - "3": "36" - } - }, - "2219": { - "SLPS_016_0x offset": "412624", - "green_text": "DATA of CLN01", - "image_table_indices": { - "1": "-1", - "2": "-1", - "3": "-1" - }, - "is_hidden": "3", - "media_file": "MOVIE\\F043.STR", - "node_name": "Dc1028", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, - "site": "A", - "type": "4", - "unlocked_by": "-1", - "upgrade_requirement": "1", - "words": { - "1": "70", - "2": "71", - "3": "11" - } - }, - "2220": { - "SLPS_016_0x offset": "425024", - "green_text": "", - "image_table_indices": { - "1": "781", - "2": "309", - "3": "660" - }, - "is_hidden": "3", - "media_file": "LAIN07.XA[29]", - "node_name": "Lda149", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "-1", - "upgrade_requirement": "3", - "words": { - "1": "67", - "2": "253", - "3": "310" - } - }, - "2221": { - "SLPS_016_0x offset": "425064", - "green_text": "", - "image_table_indices": { - "1": "782", - "2": "662", - "3": "310" - }, - "is_hidden": "0", - "media_file": "LAIN07.XA[30]", - "node_name": "Lda150", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, - "site": "A", - "type": "0", - "unlocked_by": "337", - "upgrade_requirement": "3", - "words": { - "1": "258", - "2": "83", - "3": "280" - } - }, - "2222": { - "SLPS_016_0x offset": "415304", - "green_text": "COUNSELING REC.", - "image_table_indices": { - "1": "35", - "2": "145", - "3": "251" - }, - "is_hidden": "3", - "media_file": "LAIN02.XA[5]", - "node_name": "Cou038", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "3", - "unlocked_by": "-1", - "upgrade_requirement": "2", - "words": { - "1": "71", - "2": "192", - "3": "179" - } - }, - "2223": { - "SLPS_016_0x offset": "417064", - "green_text": "", - "image_table_indices": { - "1": "585", - "2": "441", - "3": "389" - }, - "is_hidden": "0", - "media_file": "LAIN03.XA[2]", - "node_name": "Dia029", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, - "site": "A", - "type": "5", - "unlocked_by": "94", - "upgrade_requirement": "2", - "words": { - "1": "69", - "2": "64", - "3": "227" - } - }, - "dummy": { - "SLPS_016_0x offset": "", - "green_text": "", - "image_table_indices": { - "1": "", - "2": "", - "3": "" - }, - "is_hidden": "0", - "media_file": "", - "node_name": "", - "protocol_lines": { - "1": "", - "2": "", - "3": "", - "4": "" - }, - "site": "", - "type": "", - "unlocked_by": "", - "upgrade_requirement": "", - "words": { - "1": "", - "2": "", - "3": "" - } + "0100": { + "SLPS_016_0x offset": "428584", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "266", + "2": "665", + "3": "677" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[31]", + "node_name": "Tda001", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "281", + "2": "383", + "3": "201" } - -} \ No newline at end of file + }, + "0101": { + "SLPS_016_0x offset": "428624", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "666", + "2": "592", + "3": "192" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[0]", + "node_name": "Tda002", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "426", + "upgrade_requirement": "0", + "words": { + "1": "384", + "2": "43", + "3": "371" + } + }, + "0104": { + "SLPS_016_0x offset": "411864", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F013.STR", + "node_name": "Dc1009", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "24", + "2": "25", + "3": "26" + } + }, + "0109": { + "SLPS_016_0x offset": "428664", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "462", + "2": "678", + "3": "679" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[1]", + "node_name": "Tda003", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "426", + "upgrade_requirement": "0", + "words": { + "1": "270", + "2": "385", + "3": "386" + } + }, + "0110": { + "SLPS_016_0x offset": "428704", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "463", + "2": "204", + "3": "450" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[2]", + "node_name": "Tda004", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "428", + "upgrade_requirement": "0", + "words": { + "1": "123", + "2": "383", + "3": "387" + } + }, + "0112": { + "SLPS_016_0x offset": "432264", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[11]", + "node_name": "TaK001", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "127", + "2": "-1", + "3": "-1" + } + }, + "0114": { + "SLPS_016_0x offset": "432304", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[12]", + "node_name": "TaK002", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "8", + "2": "-1", + "3": "-1" + } + }, + "0116": { + "SLPS_016_0x offset": "418064", + "green_text": "", + "image_table_indices": { + "1": "680", + "2": "692", + "3": "682" + }, + "is_hidden": "35", + "media_file": "LAIN03.XA[3]", + "node_name": "Ekm001", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "14", + "4": "3" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "73", + "2": "49", + "3": "48" + } + }, + "0118": { + "SLPS_016_0x offset": "428744", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "467", + "2": "454", + "3": "205" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[3]", + "node_name": "Tda005", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "429", + "upgrade_requirement": "0", + "words": { + "1": "46", + "2": "206", + "3": "388" + } + }, + "0119": { + "SLPS_016_0x offset": "428784", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "468", + "2": "38", + "3": "206" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[4]", + "node_name": "Tda006", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "430", + "upgrade_requirement": "0", + "words": { + "1": "371", + "2": "5", + "3": "311" + } + }, + "0120": { + "SLPS_016_0x offset": "432344", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[13]", + "node_name": "TaK003", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "92", + "2": "-1", + "3": "-1" + } + }, + "0121": { + "SLPS_016_0x offset": "432384", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[14]", + "node_name": "TaK004", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "405", + "2": "-1", + "3": "-1" + } + }, + "0123": { + "SLPS_016_0x offset": "432424", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[15]", + "node_name": "TaK005", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "312", + "2": "-1", + "3": "-1" + } + }, + "01?": { + "SLPS_016_0x offset": "418664", + "green_text": "", + "image_table_indices": { + "1": "402", + "2": "397", + "3": "416" + }, + "is_hidden": "3", + "media_file": "LAIN13.XA[28]", + "node_name": "Env012", + "protocol_lines": { + "1": "20", + "2": "21", + "3": "22", + "4": "32" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0201": { + "SLPS_016_0x offset": "418104", + "green_text": "", + "image_table_indices": { + "1": "693", + "2": "628", + "3": "694" + }, + "is_hidden": "32", + "media_file": "LAIN03.XA[4]", + "node_name": "Ekm002", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "15", + "4": "3" + }, + "site": "A", + "type": "6", + "unlocked_by": "163", + "upgrade_requirement": "0", + "words": { + "1": "247", + "2": "248", + "3": "123" + } + }, + "0202": { + "SLPS_016_0x offset": "411904", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F014.STR", + "node_name": "Dc1010", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "27", + "2": "28", + "3": "29" + } + }, + "0203": { + "SLPS_016_0x offset": "428824", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "469", + "2": "211", + "3": "39" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[5]", + "node_name": "Tda007", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "431", + "upgrade_requirement": "0", + "words": { + "1": "23", + "2": "161", + "3": "291" + } + }, + "0204": { + "SLPS_016_0x offset": "428864", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "488", + "2": "475", + "3": "40" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[6]", + "node_name": "Tda008", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "432", + "upgrade_requirement": "0", + "words": { + "1": "389", + "2": "334", + "3": "390" + } + }, + "0205": { + "SLPS_016_0x offset": "432464", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[16]", + "node_name": "TaK006", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "305", + "2": "-1", + "3": "-1" + } + }, + "0206": { + "SLPS_016_0x offset": "437144", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[6]", + "node_name": "TaK123", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "67", + "2": "-1", + "3": "-1" + } + }, + "0207": { + "SLPS_016_0x offset": "437104", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[5]", + "node_name": "TaK122", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "394", + "2": "-1", + "3": "-1" + } + }, + "0208": { + "SLPS_016_0x offset": "432544", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN09.XA[18]", + "node_name": "TaK008", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "371", + "2": "-1", + "3": "-1" + } + }, + "0209": { + "SLPS_016_0x offset": "437184", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[7]", + "node_name": "TaK124", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "20", + "2": "-1", + "3": "-1" + } + }, + "0210": { + "SLPS_016_0x offset": "418144", + "green_text": "", + "image_table_indices": { + "1": "188", + "2": "174", + "3": "178" + }, + "is_hidden": "32", + "media_file": "LAIN03.XA[5]", + "node_name": "Ekm003", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "16", + "4": "3" + }, + "site": "A", + "type": "6", + "unlocked_by": "164", + "upgrade_requirement": "0", + "words": { + "1": "249", + "2": "250", + "3": "240" + } + }, + "0211": { + "SLPS_016_0x offset": "432584", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN09.XA[19]", + "node_name": "TaK009", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "190", + "2": "-1", + "3": "-1" + } + }, + "0212": { + "SLPS_016_0x offset": "428904", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "496", + "2": "41", + "3": "487" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[7]", + "node_name": "Tda009", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "433", + "upgrade_requirement": "0", + "words": { + "1": "160", + "2": "391", + "3": "158" + } + }, + "0213": { + "SLPS_016_0x offset": "428944", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "594", + "2": "245", + "3": "498" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[8]", + "node_name": "Tda010", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "434", + "upgrade_requirement": "0", + "words": { + "1": "67", + "2": "392", + "3": "262" + } + }, + "0215": { + "SLPS_016_0x offset": "432504", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN09.XA[17]", + "node_name": "TaK007", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "360", + "2": "-1", + "3": "-1" + } + }, + "0217": { + "SLPS_016_0x offset": "432624", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN09.XA[20]", + "node_name": "TaK010", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "37", + "2": "-1", + "3": "-1" + } + }, + "0218": { + "SLPS_016_0x offset": "437224", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[8]", + "node_name": "TaK125", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "65", + "2": "-1", + "3": "-1" + } + }, + "0219": { + "SLPS_016_0x offset": "418184", + "green_text": "", + "image_table_indices": { + "1": "163", + "2": "171", + "3": "176" + }, + "is_hidden": "32", + "media_file": "LAIN03.XA[6]", + "node_name": "Ekm004", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "17", + "4": "3" + }, + "site": "A", + "type": "6", + "unlocked_by": "165", + "upgrade_requirement": "0", + "words": { + "1": "43", + "2": "25", + "3": "65" + } + }, + "0221": { + "SLPS_016_0x offset": "428984", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "14", + "2": "-1", + "3": "-1" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[9]", + "node_name": "Tda011", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "435", + "upgrade_requirement": "0", + "words": { + "1": "393", + "2": "394", + "3": "201" + } + }, + "0222": { + "SLPS_016_0x offset": "429024", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "507", + "2": "58", + "3": "269" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[10]", + "node_name": "Tda012", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "436", + "upgrade_requirement": "0", + "words": { + "1": "138", + "2": "53", + "3": "4" + } + }, + "0223": { + "SLPS_016_0x offset": "429064", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "521", + "2": "277", + "3": "66" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[11]", + "node_name": "Tda013", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "437", + "upgrade_requirement": "0", + "words": { + "1": "292", + "2": "97", + "3": "146" + } + }, + "0300": { + "SLPS_016_0x offset": "429184", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "68", + "2": "280", + "3": "544" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[14]", + "node_name": "Tda016", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "440", + "upgrade_requirement": "0", + "words": { + "1": "173", + "2": "91", + "3": "259" + } + }, + "0301": { + "SLPS_016_0x offset": "432664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN09.XA[21]", + "node_name": "TaK011", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "276", + "2": "-1", + "3": "-1" + } + }, + "0303": { + "SLPS_016_0x offset": "432704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN09.XA[22]", + "node_name": "TaK012", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "192", + "2": "-1", + "3": "-1" + } + }, + "0304": { + "SLPS_016_0x offset": "418224", + "green_text": "", + "image_table_indices": { + "1": "173", + "2": "177", + "3": "175" + }, + "is_hidden": "32", + "media_file": "LAIN03.XA[7]", + "node_name": "Ekm005", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "18", + "4": "3" + }, + "site": "A", + "type": "6", + "unlocked_by": "166", + "upgrade_requirement": "0", + "words": { + "1": "154", + "2": "5", + "3": "251" + } + }, + "0306": { + "SLPS_016_0x offset": "429104", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "15", + "2": "-1", + "3": "-1" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[12]", + "node_name": "Tda014", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "438", + "upgrade_requirement": "0", + "words": { + "1": "383", + "2": "152", + "3": "95" + } + }, + "0307": { + "SLPS_016_0x offset": "429144", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "279", + "2": "67", + "3": "528" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[13]", + "node_name": "Tda015", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "439", + "upgrade_requirement": "0", + "words": { + "1": "204", + "2": "143", + "3": "267" + } + }, + "0308": { + "SLPS_016_0x offset": "429264", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "548", + "2": "70", + "3": "325" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[16]", + "node_name": "Tda018", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "442", + "upgrade_requirement": "0", + "words": { + "1": "397", + "2": "395", + "3": "161" + } + }, + "0310": { + "SLPS_016_0x offset": "437264", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[9]", + "node_name": "TaK126", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "48", + "2": "-1", + "3": "-1" + } + }, + "0312": { + "SLPS_016_0x offset": "437304", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[10]", + "node_name": "TaK127", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "4", + "2": "-1", + "3": "-1" + } + }, + "0313": { + "SLPS_016_0x offset": "418264", + "green_text": "", + "image_table_indices": { + "1": "702", + "2": "661", + "3": "770" + }, + "is_hidden": "32", + "media_file": "LAIN03.XA[8]", + "node_name": "Ekm006", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "19", + "4": "3" + }, + "site": "A", + "type": "6", + "unlocked_by": "167", + "upgrade_requirement": "0", + "words": { + "1": "69", + "2": "252", + "3": "71" + } + }, + "0314": { + "SLPS_016_0x offset": "437344", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[11]", + "node_name": "TaK128", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "371", + "2": "-1", + "3": "-1" + } + }, + "0315": { + "SLPS_016_0x offset": "429224", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "69", + "2": "547", + "3": "281" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[15]", + "node_name": "Tda017", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "441", + "upgrade_requirement": "0", + "words": { + "1": "395", + "2": "396", + "3": "83" + } + }, + "0316": { + "SLPS_016_0x offset": "429304", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "549", + "2": "335", + "3": "71" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[17]", + "node_name": "Tda019", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "443", + "upgrade_requirement": "0", + "words": { + "1": "55", + "2": "398", + "3": "288" + } + }, + "0317": { + "SLPS_016_0x offset": "429344", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "337", + "2": "550", + "3": "72" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[18]", + "node_name": "Tda020", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "444", + "upgrade_requirement": "0", + "words": { + "1": "158", + "2": "139", + "3": "57" + } + }, + "0318": { + "SLPS_016_0x offset": "432744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN09.XA[23]", + "node_name": "TaK013", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "205", + "2": "-1", + "3": "-1" + } + }, + "0319": { + "SLPS_016_0x offset": "432784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[24]", + "node_name": "TaK014", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "82", + "2": "-1", + "3": "-1" + } + }, + "0321": { + "SLPS_016_0x offset": "432824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[25]", + "node_name": "TaK015", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "126", + "2": "-1", + "3": "-1" + } + }, + "0322": { + "SLPS_016_0x offset": "432864", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN09.XA[26]", + "node_name": "TaK016", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "4", + "2": "-1", + "3": "-1" + } + }, + "0400": { + "SLPS_016_0x offset": "432904", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[27]", + "node_name": "TaK017", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "237", + "2": "-1", + "3": "-1" + } + }, + "0401": { + "SLPS_016_0x offset": "429384", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "350", + "2": "74", + "3": "553" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[19]", + "node_name": "Tda021", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "445", + "upgrade_requirement": "0", + "words": { + "1": "30", + "2": "226", + "3": "193" + } + }, + "0402": { + "SLPS_016_0x offset": "429424", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "76", + "2": "351", + "3": "555" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[20]", + "node_name": "Tda022", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "446", + "upgrade_requirement": "0", + "words": { + "1": "168", + "2": "93", + "3": "399" + } + }, + "0403": { + "SLPS_016_0x offset": "432944", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[28]", + "node_name": "TaK018", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "371", + "2": "-1", + "3": "-1" + } + }, + "0404": { + "SLPS_016_0x offset": "437384", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[12]", + "node_name": "TaK129", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "308", + "2": "-1", + "3": "-1" + } + }, + "0405": { + "SLPS_016_0x offset": "412104", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F025.STR", + "node_name": "Dc1015", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "23", + "2": "42", + "3": "43" + } + }, + "0406": { + "SLPS_016_0x offset": "432984", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN09.XA[29]", + "node_name": "TaK019", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "389", + "2": "-1", + "3": "-1" + } + }, + "0407": { + "SLPS_016_0x offset": "437424", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN12.XA[13]", + "node_name": "TaK130", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "83", + "2": "-1", + "3": "-1" + } + }, + "0408": { + "SLPS_016_0x offset": "415944", + "green_text": "", + "image_table_indices": { + "1": "265", + "2": "54", + "3": "57" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[6]", + "node_name": "Dia001", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "57", + "upgrade_requirement": "0", + "words": { + "1": "207", + "2": "208", + "3": "146" + } + }, + "0409": { + "SLPS_016_0x offset": "415984", + "green_text": "", + "image_table_indices": { + "1": "43", + "2": "44", + "3": "30" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[7]", + "node_name": "Dia002", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "110", + "upgrade_requirement": "0", + "words": { + "1": "209", + "2": "210", + "3": "19" + } + }, + "0410": { + "SLPS_016_0x offset": "429464", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "79", + "2": "556", + "3": "352" + }, + "is_hidden": "16", + "media_file": "LAIN08.XA[21]", + "node_name": "Tda023", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "447", + "upgrade_requirement": "0", + "words": { + "1": "43", + "2": "383", + "3": "326" + } + }, + "0411": { + "SLPS_016_0x offset": "429504", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "16", + "2": "-1", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN08.XA[22]", + "node_name": "Tda024", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "58", + "upgrade_requirement": "0", + "words": { + "1": "381", + "2": "400", + "3": "148" + } + }, + "0412": { + "SLPS_016_0x offset": "429544", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "558", + "2": "353", + "3": "80" + }, + "is_hidden": "0", + "media_file": "LAIN08.XA[23]", + "node_name": "Tda025", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "449", + "upgrade_requirement": "2", + "words": { + "1": "73", + "2": "47", + "3": "401" + } + }, + "0413": { + "SLPS_016_0x offset": "439904", + "green_text": "mT up-date App.", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\INS01.STR", + "node_name": "SSkn01", + "protocol_lines": { + "1": "47", + "2": "48", + "3": "49", + "4": "50" + }, + "site": "A", + "type": "7", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0414": { + "SLPS_016_0x offset": "413824", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "31", + "2": "584", + "3": "607" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[0]", + "node_name": "Cou001", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "107", + "2": "126", + "3": "95" + } + }, + "0415": { + "SLPS_016_0x offset": "413864", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "577", + "2": "583", + "3": "492" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[1]", + "node_name": "Cou002", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "57", + "upgrade_requirement": "0", + "words": { + "1": "127", + "2": "128", + "3": "129" + } + }, + "0416": { + "SLPS_016_0x offset": "413944", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "546", + "2": "529", + "3": "531" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[3]", + "node_name": "Cou004", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "132", + "2": "133", + "3": "134" + } + }, + "0417": { + "SLPS_016_0x offset": "439504", + "green_text": "nT APPLICATION", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[5]", + "node_name": "GaTE01", + "protocol_lines": { + "1": "42", + "2": "43", + "3": "44", + "4": "45" + }, + "site": "A", + "type": "8", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0418": { + "SLPS_016_0x offset": "416024", + "green_text": "", + "image_table_indices": { + "1": "28", + "2": "53", + "3": "86" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[8]", + "node_name": "Dia003", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "111", + "upgrade_requirement": "0", + "words": { + "1": "83", + "2": "167", + "3": "80" + } + }, + "0419": { + "SLPS_016_0x offset": "416064", + "green_text": "", + "image_table_indices": { + "1": "105", + "2": "249", + "3": "254" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[9]", + "node_name": "Dia004", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "112", + "upgrade_requirement": "0", + "words": { + "1": "93", + "2": "16", + "3": "211" + } + }, + "0420": { + "SLPS_016_0x offset": "429584", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "354", + "2": "559", + "3": "82" + }, + "is_hidden": "3", + "media_file": "LAIN08.XA[24]", + "node_name": "Tda026", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "391", + "2": "402", + "3": "183" + } + }, + "0421": { + "SLPS_016_0x offset": "429624", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "355", + "2": "83", + "3": "561" + }, + "is_hidden": "0", + "media_file": "LAIN08.XA[25]", + "node_name": "Tda027", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "451", + "upgrade_requirement": "3", + "words": { + "1": "403", + "2": "264", + "3": "396" + } + }, + "0422": { + "SLPS_016_0x offset": "429664", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "93", + "2": "356", + "3": "562" + }, + "is_hidden": "3", + "media_file": "LAIN08.XA[26]", + "node_name": "Tda028", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "163", + "2": "404", + "3": "167" + } + }, + "0423": { + "SLPS_016_0x offset": "413904", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "495", + "2": "490", + "3": "551" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[2]", + "node_name": "Cou003", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "58", + "upgrade_requirement": "0", + "words": { + "1": "44", + "2": "130", + "3": "131" + } + }, + "0500": { + "SLPS_016_0x offset": "412224", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F029.STR", + "node_name": "Dc1018", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "48", + "2": "49", + "3": "50" + } + }, + "0501": { + "SLPS_016_0x offset": "413984", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "443", + "2": "445", + "3": "447" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[4]", + "node_name": "Cou005", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "60", + "upgrade_requirement": "0", + "words": { + "1": "135", + "2": "136", + "3": "137" + } + }, + "0503": { + "SLPS_016_0x offset": "416104", + "green_text": "", + "image_table_indices": { + "1": "256", + "2": "55", + "3": "321" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[10]", + "node_name": "Dia005", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "113", + "upgrade_requirement": "0", + "words": { + "1": "69", + "2": "211", + "3": "212" + } + }, + "0504": { + "SLPS_016_0x offset": "416144", + "green_text": "", + "image_table_indices": { + "1": "322", + "2": "324", + "3": "329" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[11]", + "node_name": "Dia006", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "114", + "upgrade_requirement": "1", + "words": { + "1": "169", + "2": "163", + "3": "70" + } + }, + "0505": { + "SLPS_016_0x offset": "416184", + "green_text": "", + "image_table_indices": { + "1": "331", + "2": "330", + "3": "376" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[12]", + "node_name": "Dia007", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "115", + "upgrade_requirement": "0", + "words": { + "1": "207", + "2": "165", + "3": "34" + } + }, + "0506": { + "SLPS_016_0x offset": "429704", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "94", + "2": "564", + "3": "783" + }, + "is_hidden": "3", + "media_file": "LAIN08.XA[27]", + "node_name": "Tda029", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "43", + "2": "405", + "3": "73" + } + }, + "0507": { + "SLPS_016_0x offset": "429744", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "565", + "2": "95", + "3": "358" + }, + "is_hidden": "0", + "media_file": "LAIN08.XA[28]", + "node_name": "Tda030", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "454", + "upgrade_requirement": "0", + "words": { + "1": "151", + "2": "226", + "3": "162" + } + }, + "0508": { + "SLPS_016_0x offset": "429824", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "360", + "2": "569", + "3": "102" + }, + "is_hidden": "3", + "media_file": "LAIN08.XA[30]", + "node_name": "Tda032", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "397", + "2": "300", + "3": "2" + } + }, + "0509": { + "SLPS_016_0x offset": "429864", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "361", + "2": "114", + "3": "570" + }, + "is_hidden": "0", + "media_file": "LAIN08.XA[31]", + "node_name": "Tda033", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "457", + "upgrade_requirement": "1", + "words": { + "1": "407", + "2": "397", + "3": "383" + } + }, + "0510": { + "SLPS_016_0x offset": "414024", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "442", + "2": "439", + "3": "446" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[5]", + "node_name": "Cou006", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "138", + "2": "5", + "3": "93" + } + }, + "0511": { + "SLPS_016_0x offset": "414064", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "464", + "2": "461", + "3": "406" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[6]", + "node_name": "Cou007", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "62", + "upgrade_requirement": "0", + "words": { + "1": "139", + "2": "68", + "3": "24" + } + }, + "0512": { + "SLPS_016_0x offset": "433024", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN09.XA[30]", + "node_name": "TaK020", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "93", + "2": "-1", + "3": "-1" + } + }, + "0513": { + "SLPS_016_0x offset": "411664", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F004.STR", + "node_name": "Dc1004", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "9", + "2": "10", + "3": "11" + } + }, + "0514": { + "SLPS_016_0x offset": "416224", + "green_text": "", + "image_table_indices": { + "1": "670", + "2": "347", + "3": "381" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[13]", + "node_name": "Dia008", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "60", + "upgrade_requirement": "0", + "words": { + "1": "213", + "2": "20", + "3": "214" + } + }, + "0515": { + "SLPS_016_0x offset": "429784", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "566", + "2": "359", + "3": "98" + }, + "is_hidden": "3", + "media_file": "LAIN08.XA[29]", + "node_name": "Tda031", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "73", + "2": "64", + "3": "406" + } + }, + "0516": { + "SLPS_016_0x offset": "416304", + "green_text": "", + "image_table_indices": { + "1": "380", + "2": "390", + "3": "391" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[15]", + "node_name": "Dia010", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "118", + "upgrade_requirement": "0", + "words": { + "1": "215", + "2": "164", + "3": "80" + } + }, + "0517": { + "SLPS_016_0x offset": "429904", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "115", + "2": "362", + "3": "571" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[0]", + "node_name": "Tda034", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "168", + "2": "193", + "3": "20" + } + }, + "0518": { + "SLPS_016_0x offset": "429944", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "116", + "2": "572", + "3": "363" + }, + "is_hidden": "0", + "media_file": "LAIN09.XA[1]", + "node_name": "Tda035", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "459", + "upgrade_requirement": "3", + "words": { + "1": "173", + "2": "193", + "3": "401" + } + }, + "0520": { + "SLPS_016_0x offset": "414104", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "408", + "2": "409", + "3": "418" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[7]", + "node_name": "Cou008", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "140", + "2": "73", + "3": "48" + } + }, + "0521": { + "SLPS_016_0x offset": "414144", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "412", + "2": "545", + "3": "536" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[8]", + "node_name": "Cou009", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "64", + "upgrade_requirement": "1", + "words": { + "1": "45", + "2": "141", + "3": "83" + } + }, + "0522": { + "SLPS_016_0x offset": "414184", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "608", + "2": "586", + "3": "618" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[9]", + "node_name": "Cou010", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "65", + "upgrade_requirement": "0", + "words": { + "1": "142", + "2": "143", + "3": "144" + } + }, + "0523": { + "SLPS_016_0x offset": "416264", + "green_text": "", + "image_table_indices": { + "1": "267", + "2": "348", + "3": "375" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[14]", + "node_name": "Dia009", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "62", + "upgrade_requirement": "0", + "words": { + "1": "169", + "2": "56", + "3": "155" + } + }, + "0600": { + "SLPS_016_0x offset": "416384", + "green_text": "", + "image_table_indices": { + "1": "455", + "2": "421", + "3": "530" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[17]", + "node_name": "Dia012", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "64", + "upgrade_requirement": "0", + "words": { + "1": "217", + "2": "218", + "3": "158" + } + }, + "0601": { + "SLPS_016_0x offset": "416344", + "green_text": "", + "image_table_indices": { + "1": "393", + "2": "427", + "3": "417" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[16]", + "node_name": "Dia011", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "119", + "upgrade_requirement": "1", + "words": { + "1": "70", + "2": "131", + "3": "216" + } + }, + "0602": { + "SLPS_016_0x offset": "429984", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "579", + "2": "118", + "3": "364" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[2]", + "node_name": "Tda036", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "167", + "2": "16", + "3": "97" + } + }, + "0603": { + "SLPS_016_0x offset": "430024", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "580", + "2": "365", + "3": "119" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[3]", + "node_name": "Tda037", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "384", + "2": "161", + "3": "37" + } + }, + "0604": { + "SLPS_016_0x offset": "433064", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN09.XA[31]", + "node_name": "TaK021", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "31", + "2": "-1", + "3": "-1" + } + }, + "0606": { + "SLPS_016_0x offset": "414224", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "392", + "2": "395", + "3": "394" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[10]", + "node_name": "Cou011", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "145", + "2": "146", + "3": "51" + } + }, + "0607": { + "SLPS_016_0x offset": "414264", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "349", + "2": "257", + "3": "252" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[11]", + "node_name": "Cou012", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "67", + "upgrade_requirement": "0", + "words": { + "1": "71", + "2": "143", + "3": "147" + } + }, + "0608": { + "SLPS_016_0x offset": "414344", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "0", + "2": "-1", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[13]", + "node_name": "Cou014", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "69", + "upgrade_requirement": "0", + "words": { + "1": "149", + "2": "150", + "3": "151" + } + }, + "0609": { + "SLPS_016_0x offset": "416424", + "green_text": "", + "image_table_indices": { + "1": "428", + "2": "465", + "3": "501" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[18]", + "node_name": "Dia013", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "121", + "upgrade_requirement": "0", + "words": { + "1": "219", + "2": "220", + "3": "167" + } + }, + "0610": { + "SLPS_016_0x offset": "416464", + "green_text": "", + "image_table_indices": { + "1": "502", + "2": "429", + "3": "533" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[19]", + "node_name": "Dia014", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "67", + "upgrade_requirement": "0", + "words": { + "1": "71", + "2": "188", + "3": "39" + } + }, + "0611": { + "SLPS_016_0x offset": "416504", + "green_text": "", + "image_table_indices": { + "1": "371", + "2": "491", + "3": "407" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[20]", + "node_name": "Dia015", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "69", + "upgrade_requirement": "0", + "words": { + "1": "0", + "2": "167", + "3": "185" + } + }, + "0612": { + "SLPS_016_0x offset": "433104", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[0]", + "node_name": "TaK022", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "241", + "2": "-1", + "3": "-1" + } + }, + "0613": { + "SLPS_016_0x offset": "419104", + "green_text": "", + "image_table_indices": { + "1": "1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[9]", + "node_name": "Lda001", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "70", + "upgrade_requirement": "0", + "words": { + "1": "151", + "2": "257", + "3": "142" + } + }, + "0614": { + "SLPS_016_0x offset": "433144", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[1]", + "node_name": "TaK023", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "399", + "2": "-1", + "3": "-1" + } + }, + "0615": { + "SLPS_016_0x offset": "414304", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "29", + "2": "253", + "3": "370" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[12]", + "node_name": "Cou013", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "148", + "2": "1", + "3": "62" + } + }, + "0616": { + "SLPS_016_0x offset": "414384", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "258", + "2": "179", + "3": "32" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[14]", + "node_name": "Cou015", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "152", + "2": "153", + "3": "154" + } + }, + "0617": { + "SLPS_016_0x offset": "414424", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "180", + "2": "259", + "3": "46" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[15]", + "node_name": "Cou016", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "71", + "upgrade_requirement": "1", + "words": { + "1": "155", + "2": "156", + "3": "157" + } + }, + "0618": { + "SLPS_016_0x offset": "439944", + "green_text": "mT up-date App.", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\INS02.STR", + "node_name": "SSkn02", + "protocol_lines": { + "1": "47", + "2": "48", + "3": "49", + "4": "50" + }, + "site": "A", + "type": "7", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0619": { + "SLPS_016_0x offset": "416544", + "green_text": "", + "image_table_indices": { + "1": "516", + "2": "372", + "3": "410" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[21]", + "node_name": "Dia016", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "71", + "upgrade_requirement": "0", + "words": { + "1": "221", + "2": "217", + "3": "159" + } + }, + "0620": { + "SLPS_016_0x offset": "437464", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[14]", + "node_name": "TaK131", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "224", + "2": "-1", + "3": "-1" + } + }, + "0621": { + "SLPS_016_0x offset": "439544", + "green_text": "nT APPLICATION", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[6]", + "node_name": "GaTE02", + "protocol_lines": { + "1": "42", + "2": "43", + "3": "44", + "4": "45" + }, + "site": "A", + "type": "8", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0622": { + "SLPS_016_0x offset": "433184", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN10.XA[2]", + "node_name": "TaK024", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "70", + "2": "-1", + "3": "-1" + } + }, + "0623": { + "SLPS_016_0x offset": "437504", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[15]", + "node_name": "TaK132", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "340", + "2": "-1", + "3": "-1" + } + }, + "0700": { + "SLPS_016_0x offset": "419144", + "green_text": "", + "image_table_indices": { + "1": "238", + "2": "220", + "3": "235" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[10]", + "node_name": "Lda002", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "74", + "upgrade_requirement": "0", + "words": { + "1": "253", + "2": "240", + "3": "160" + } + }, + "0701": { + "SLPS_016_0x offset": "414464", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "181", + "2": "49", + "3": "260" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[16]", + "node_name": "Cou017", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "158", + "2": "159", + "3": "160" + } + }, + "0702": { + "SLPS_016_0x offset": "414504", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "50", + "2": "182", + "3": "261" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[17]", + "node_name": "Cou018", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "73", + "upgrade_requirement": "1", + "words": { + "1": "151", + "2": "161", + "3": "162" + } + }, + "0704": { + "SLPS_016_0x offset": "416584", + "green_text": "", + "image_table_indices": { + "1": "517", + "2": "411", + "3": "373" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[22]", + "node_name": "Dia017", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "73", + "upgrade_requirement": "1", + "words": { + "1": "207", + "2": "171", + "3": "23" + } + }, + "0705": { + "SLPS_016_0x offset": "439664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[9]", + "node_name": "P2-01", + "protocol_lines": { + "1": "46", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "9", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0706": { + "SLPS_016_0x offset": "430064", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "17", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[4]", + "node_name": "Tda038", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "161", + "2": "126", + "3": "383" + } + }, + "0708": { + "SLPS_016_0x offset": "433224", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN10.XA[3]", + "node_name": "TaK025", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "385", + "2": "-1", + "3": "-1" + } + }, + "0709": { + "SLPS_016_0x offset": "419184", + "green_text": "", + "image_table_indices": { + "1": "2", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[11]", + "node_name": "Lda003", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "258", + "2": "237", + "3": "259" + } + }, + "0710": { + "SLPS_016_0x offset": "419224", + "green_text": "", + "image_table_indices": { + "1": "191", + "2": "193", + "3": "195" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[12]", + "node_name": "Lda004", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "191", + "upgrade_requirement": "1", + "words": { + "1": "257", + "2": "140", + "3": "260" + } + }, + "0712": { + "SLPS_016_0x offset": "412024", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F022.STR", + "node_name": "Dc1013", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "36", + "2": "37", + "3": "38" + } + }, + "0713": { + "SLPS_016_0x offset": "433264", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[4]", + "node_name": "TaK026", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "388", + "2": "-1", + "3": "-1" + } + }, + "0714": { + "SLPS_016_0x offset": "437544", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN12.XA[16]", + "node_name": "TaK133", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "223", + "2": "-1", + "3": "-1" + } + }, + "0716": { + "SLPS_016_0x offset": "433384", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[7]", + "node_name": "TaK029", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "2", + "2": "-1", + "3": "-1" + } + }, + "0718": { + "SLPS_016_0x offset": "419264", + "green_text": "", + "image_table_indices": { + "1": "240", + "2": "150", + "3": "144" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[13]", + "node_name": "Lda005", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "33", + "2": "217", + "3": "261" + } + }, + "0719": { + "SLPS_016_0x offset": "419304", + "green_text": "", + "image_table_indices": { + "1": "133", + "2": "117", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[14]", + "node_name": "Lda006", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "193", + "upgrade_requirement": "2", + "words": { + "1": "205", + "2": "83", + "3": "262" + } + }, + "0720": { + "SLPS_016_0x offset": "414544", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "52", + "2": "262", + "3": "183" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[18]", + "node_name": "Cou019", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "151", + "2": "163", + "3": "136" + } + }, + "0722": { + "SLPS_016_0x offset": "416624", + "green_text": "", + "image_table_indices": { + "1": "413", + "2": "519", + "3": "374" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[23]", + "node_name": "Dia018", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "75", + "upgrade_requirement": "2", + "words": { + "1": "214", + "2": "64", + "3": "188" + } + }, + "0723": { + "SLPS_016_0x offset": "433304", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN10.XA[5]", + "node_name": "TaK027", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "386", + "2": "-1", + "3": "-1" + } + }, + "0800": { + "SLPS_016_0x offset": "439584", + "green_text": "nT APPLICATION", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[7]", + "node_name": "GaTE03", + "protocol_lines": { + "1": "42", + "2": "43", + "3": "44", + "4": "45" + }, + "site": "A", + "type": "8", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "0801": { + "SLPS_016_0x offset": "433344", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN10.XA[6]", + "node_name": "TaK028", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "119", + "2": "-1", + "3": "-1" + } + }, + "0802": { + "SLPS_016_0x offset": "437584", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[17]", + "node_name": "TaK134", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "407", + "2": "-1", + "3": "-1" + } + }, + "0803": { + "SLPS_016_0x offset": "419344", + "green_text": "", + "image_table_indices": { + "1": "99", + "2": "420", + "3": "62" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[15]", + "node_name": "Lda007", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "254", + "2": "263", + "3": "264" + } + }, + "0804": { + "SLPS_016_0x offset": "419384", + "green_text": "", + "image_table_indices": { + "1": "36", + "2": "703", + "3": "696" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[16]", + "node_name": "Lda008", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "195", + "upgrade_requirement": "1", + "words": { + "1": "257", + "2": "70", + "3": "265" + } + }, + "0805": { + "SLPS_016_0x offset": "419424", + "green_text": "", + "image_table_indices": { + "1": "154", + "2": "187", + "3": "613" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[17]", + "node_name": "Lda009", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "219", + "2": "152", + "3": "252" + } + }, + "0806": { + "SLPS_016_0x offset": "419464", + "green_text": "", + "image_table_indices": { + "1": "3", + "2": "-1", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[18]", + "node_name": "Lda010", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "197", + "upgrade_requirement": "1", + "words": { + "1": "6", + "2": "160", + "3": "55" + } + }, + "0809": { + "SLPS_016_0x offset": "433424", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[8]", + "node_name": "TaK030", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "301", + "2": "-1", + "3": "-1" + } + }, + "0810": { + "SLPS_016_0x offset": "437624", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[18]", + "node_name": "TaK135", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "329", + "2": "-1", + "3": "-1" + } + }, + "0812": { + "SLPS_016_0x offset": "419504", + "green_text": "", + "image_table_indices": { + "1": "593", + "2": "578", + "3": "437" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[19]", + "node_name": "Lda011", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "151", + "2": "69", + "3": "212" + } + }, + "0813": { + "SLPS_016_0x offset": "419544", + "green_text": "", + "image_table_indices": { + "1": "4", + "2": "-1", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[20]", + "node_name": "Lda012", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "199", + "upgrade_requirement": "1", + "words": { + "1": "67", + "2": "266", + "3": "169" + } + }, + "0814": { + "SLPS_016_0x offset": "419584", + "green_text": "", + "image_table_indices": { + "1": "5", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[21]", + "node_name": "Lda013", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "22", + "2": "254", + "3": "206" + } + }, + "0815": { + "SLPS_016_0x offset": "433464", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN10.XA[9]", + "node_name": "TaK031", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "67", + "2": "-1", + "3": "-1" + } + }, + "0816": { + "SLPS_016_0x offset": "414584", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "263", + "2": "63", + "3": "184" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[19]", + "node_name": "Cou020", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "1", + "2": "164", + "3": "67" + } + }, + "0817": { + "SLPS_016_0x offset": "414624", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "264", + "2": "185", + "3": "75" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[20]", + "node_name": "Cou021", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "76", + "upgrade_requirement": "1", + "words": { + "1": "165", + "2": "23", + "3": "140" + } + }, + "0818": { + "SLPS_016_0x offset": "416664", + "green_text": "", + "image_table_indices": { + "1": "414", + "2": "377", + "3": "520" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[24]", + "node_name": "Dia019", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "76", + "upgrade_requirement": "1", + "words": { + "1": "113", + "2": "40", + "3": "144" + } + }, + "0819": { + "SLPS_016_0x offset": "433504", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[10]", + "node_name": "TaK032", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "149", + "2": "-1", + "3": "-1" + } + }, + "0820": { + "SLPS_016_0x offset": "437664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN12.XA[19]", + "node_name": "TaK136", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "325", + "2": "-1", + "3": "-1" + } + }, + "0821": { + "SLPS_016_0x offset": "419624", + "green_text": "", + "image_table_indices": { + "1": "6", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[22]", + "node_name": "Lda014", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "253", + "2": "267", + "3": "268" + } + }, + "0822": { + "SLPS_016_0x offset": "419664", + "green_text": "", + "image_table_indices": { + "1": "7", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[23]", + "node_name": "Lda015", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "269", + "2": "3", + "3": "10" + } + }, + "0823": { + "SLPS_016_0x offset": "419704", + "green_text": "", + "image_table_indices": { + "1": "8", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[24]", + "node_name": "Lda016", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "160", + "2": "143", + "3": "270" + } + }, + "0900": { + "SLPS_016_0x offset": "419824", + "green_text": "", + "image_table_indices": { + "1": "674", + "2": "673", + "3": "430" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[27]", + "node_name": "Lda019", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "261", + "2": "124", + "3": "107" + } + }, + "0901": { + "SLPS_016_0x offset": "414664", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "186", + "2": "268", + "3": "81" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[21]", + "node_name": "Cou022", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "77", + "upgrade_requirement": "2", + "words": { + "1": "166", + "2": "167", + "3": "168" + } + }, + "0902": { + "SLPS_016_0x offset": "414704", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "190", + "2": "85", + "3": "272" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[22]", + "node_name": "Cou023", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "78", + "upgrade_requirement": "2", + "words": { + "1": "169", + "2": "154", + "3": "129" + } + }, + "0904": { + "SLPS_016_0x offset": "411824", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F012.STR", + "node_name": "Dc1008", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "21", + "2": "22", + "3": "23" + } + }, + "0905": { + "SLPS_016_0x offset": "433544", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[11]", + "node_name": "TaK033", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "8", + "2": "-1", + "3": "-1" + } + }, + "0906": { + "SLPS_016_0x offset": "419744", + "green_text": "", + "image_table_indices": { + "1": "687", + "2": "686", + "3": "704" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[25]", + "node_name": "Lda017", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "93", + "2": "47", + "3": "45" + } + }, + "0907": { + "SLPS_016_0x offset": "419784", + "green_text": "", + "image_table_indices": { + "1": "691", + "2": "701", + "3": "648" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[26]", + "node_name": "Lda018", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "219", + "2": "73", + "3": "140" + } + }, + "0908": { + "SLPS_016_0x offset": "419864", + "green_text": "", + "image_table_indices": { + "1": "155", + "2": "518", + "3": "37" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[28]", + "node_name": "Lda020", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "271", + "2": "43", + "3": "195" + } + }, + "0909": { + "SLPS_016_0x offset": "419904", + "green_text": "", + "image_table_indices": { + "1": "688", + "2": "769", + "3": "689" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[29]", + "node_name": "Lda021", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "208", + "upgrade_requirement": "2", + "words": { + "1": "272", + "2": "132", + "3": "273" + } + }, + "0911": { + "SLPS_016_0x offset": "412144", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F026.STR", + "node_name": "Dc1016", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "37", + "2": "44", + "3": "45" + } + }, + "0912": { + "SLPS_016_0x offset": "430104", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "366", + "2": "121", + "3": "582" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[5]", + "node_name": "Tda039", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "402", + "2": "288", + "3": "47" + } + }, + "0913": { + "SLPS_016_0x offset": "433584", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN10.XA[12]", + "node_name": "TaK034", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "339", + "2": "-1", + "3": "-1" + } + }, + "0914": { + "SLPS_016_0x offset": "437704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[20]", + "node_name": "TaK137", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "4", + "2": "-1", + "3": "-1" + } + }, + "0917": { + "SLPS_016_0x offset": "419944", + "green_text": "", + "image_table_indices": { + "1": "21", + "2": "425", + "3": "26" + }, + "is_hidden": "3", + "media_file": "LAIN03.XA[30]", + "node_name": "Lda022", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "16", + "2": "253", + "3": "274" + } + }, + "0918": { + "SLPS_016_0x offset": "419984", + "green_text": "", + "image_table_indices": { + "1": "22", + "2": "27", + "3": "426" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[31]", + "node_name": "Lda023", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "210", + "upgrade_requirement": "2", + "words": { + "1": "274", + "2": "219", + "3": "56" + } + }, + "0919": { + "SLPS_016_0x offset": "433624", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN10.XA[13]", + "node_name": "TaK035", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "92", + "2": "-1", + "3": "-1" + } + }, + "0920": { + "SLPS_016_0x offset": "437744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[21]", + "node_name": "TaK138", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "55", + "2": "-1", + "3": "-1" + } + }, + "0921": { + "SLPS_016_0x offset": "433664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[14]", + "node_name": "TaK036", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "2", + "2": "-1", + "3": "-1" + } + }, + "0922": { + "SLPS_016_0x offset": "433704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[15]", + "node_name": "TaK037", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "260", + "2": "-1", + "3": "-1" + } + }, + "0923": { + "SLPS_016_0x offset": "437784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[22]", + "node_name": "TaK139", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "336", + "2": "-1", + "3": "-1" + } + }, + "1000": { + "SLPS_016_0x offset": "433744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN10.XA[16]", + "node_name": "TaK038", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "97", + "2": "-1", + "3": "-1" + } + }, + "1002": { + "SLPS_016_0x offset": "420024", + "green_text": "", + "image_table_indices": { + "1": "9", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[0]", + "node_name": "Lda024", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "261", + "2": "47", + "3": "275" + } + }, + "1003": { + "SLPS_016_0x offset": "420064", + "green_text": "", + "image_table_indices": { + "1": "20", + "2": "448", + "3": "23" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[1]", + "node_name": "Lda025", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "212", + "upgrade_requirement": "2", + "words": { + "1": "102", + "2": "261", + "3": "154" + } + }, + "1004": { + "SLPS_016_0x offset": "414744", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "87", + "2": "194", + "3": "282" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[23]", + "node_name": "Cou024", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "170", + "2": "171", + "3": "89" + } + }, + "1005": { + "SLPS_016_0x offset": "414784", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "88", + "2": "291", + "3": "196" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[24]", + "node_name": "Cou025", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "80", + "upgrade_requirement": "2", + "words": { + "1": "170", + "2": "172", + "3": "38" + } + }, + "1006": { + "SLPS_016_0x offset": "416704", + "green_text": "", + "image_table_indices": { + "1": "378", + "2": "415", + "3": "522" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[25]", + "node_name": "Dia020", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "80", + "upgrade_requirement": "1", + "words": { + "1": "222", + "2": "140", + "3": "8" + } + }, + "1007": { + "SLPS_016_0x offset": "433784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN10.XA[17]", + "node_name": "TaK039", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "69", + "2": "-1", + "3": "-1" + } + }, + "1008": { + "SLPS_016_0x offset": "430144", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "18", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[6]", + "node_name": "Tda040", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "288", + "2": "383", + "3": "68" + } + }, + "1009": { + "SLPS_016_0x offset": "430184", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "123", + "2": "42", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN09.XA[7]", + "node_name": "Tda041", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "465", + "upgrade_requirement": "2", + "words": { + "1": "282", + "2": "335", + "3": "383" + } + }, + "1011": { + "SLPS_016_0x offset": "420104", + "green_text": "", + "image_table_indices": { + "1": "449", + "2": "164", + "3": "24" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[2]", + "node_name": "Lda026", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "270", + "2": "276", + "3": "277" + } + }, + "1012": { + "SLPS_016_0x offset": "420144", + "green_text": "", + "image_table_indices": { + "1": "451", + "2": "25", + "3": "165" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[3]", + "node_name": "Lda027", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "261", + "2": "253", + "3": "154" + } + }, + "1013": { + "SLPS_016_0x offset": "420184", + "green_text": "", + "image_table_indices": { + "1": "342", + "2": "453", + "3": "166" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[4]", + "node_name": "Lda028", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "253", + "2": "278", + "3": "279" + } + }, + "1014": { + "SLPS_016_0x offset": "420224", + "green_text": "", + "image_table_indices": { + "1": "45", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[5]", + "node_name": "Lda029", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "210", + "2": "151", + "3": "251" + } + }, + "1015": { + "SLPS_016_0x offset": "437824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[23]", + "node_name": "TaK140", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "403", + "2": "-1", + "3": "-1" + } + }, + "1016": { + "SLPS_016_0x offset": "414824", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "323", + "2": "92", + "3": "197" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[25]", + "node_name": "Cou026", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "89", + "2": "173", + "3": "168" + } + }, + "1017": { + "SLPS_016_0x offset": "414864", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "326", + "2": "198", + "3": "103" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[26]", + "node_name": "Cou027", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "82", + "upgrade_requirement": "1", + "words": { + "1": "174", + "2": "175", + "3": "176" + } + }, + "1018": { + "SLPS_016_0x offset": "430224", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "595", + "2": "124", + "3": "367" + }, + "is_hidden": "0", + "media_file": "LAIN09.XA[8]", + "node_name": "Tda042", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "466", + "upgrade_requirement": "2", + "words": { + "1": "395", + "2": "129", + "3": "193" + } + }, + "1019": { + "SLPS_016_0x offset": "430264", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "600", + "2": "368", + "3": "125" + }, + "is_hidden": "0", + "media_file": "LAIN09.XA[9]", + "node_name": "Tda043", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "467", + "upgrade_requirement": "3", + "words": { + "1": "182", + "2": "178", + "3": "400" + } + }, + "1020": { + "SLPS_016_0x offset": "416744", + "green_text": "", + "image_table_indices": { + "1": "379", + "2": "523", + "3": "419" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[26]", + "node_name": "Dia021", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "82", + "upgrade_requirement": "1", + "words": { + "1": "174", + "2": "175", + "3": "147" + } + }, + "1021": { + "SLPS_016_0x offset": "420264", + "green_text": "", + "image_table_indices": { + "1": "167", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[6]", + "node_name": "Lda030", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "257", + "2": "267", + "3": "10" + } + }, + "1022": { + "SLPS_016_0x offset": "420304", + "green_text": "", + "image_table_indices": { + "1": "170", + "2": "456", + "3": "47" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[7]", + "node_name": "Lda031", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "278", + "2": "150", + "3": "280" + } + }, + "1100": { + "SLPS_016_0x offset": "433824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN10.XA[18]", + "node_name": "TaK040", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "158", + "2": "-1", + "3": "-1" + } + }, + "1101": { + "SLPS_016_0x offset": "433864", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[19]", + "node_name": "TaK041", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "319", + "2": "-1", + "3": "-1" + } + }, + "1102": { + "SLPS_016_0x offset": "437864", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[24]", + "node_name": "TaK141", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "38", + "2": "-1", + "3": "-1" + } + }, + "1103": { + "SLPS_016_0x offset": "433904", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[20]", + "node_name": "TaK042", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "318", + "2": "-1", + "3": "-1" + } + }, + "1104": { + "SLPS_016_0x offset": "412384", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F036.STR", + "node_name": "Dc1022", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "57", + "2": "58", + "3": "59" + } + }, + "1105": { + "SLPS_016_0x offset": "420344", + "green_text": "", + "image_table_indices": { + "1": "457", + "2": "189", + "3": "48" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[8]", + "node_name": "Lda032", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "82", + "2": "253", + "3": "41" + } + }, + "1106": { + "SLPS_016_0x offset": "420384", + "green_text": "", + "image_table_indices": { + "1": "458", + "2": "51", + "3": "237" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[9]", + "node_name": "Lda033", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "219", + "2": "281", + "3": "97" + } + }, + "1107": { + "SLPS_016_0x offset": "420424", + "green_text": "", + "image_table_indices": { + "1": "56", + "2": "33", + "3": "239" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[10]", + "node_name": "Lda034", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "89", + "2": "124", + "3": "282" + } + }, + "1109": { + "SLPS_016_0x offset": "433944", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[21]", + "node_name": "TaK043", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "321", + "2": "-1", + "3": "-1" + } + }, + "1110": { + "SLPS_016_0x offset": "437904", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN12.XA[25]", + "node_name": "TaK142", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "225", + "2": "-1", + "3": "-1" + } + }, + "1111": { + "SLPS_016_0x offset": "439704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[10]", + "node_name": "P2-02", + "protocol_lines": { + "1": "46", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "9", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1112": { + "SLPS_016_0x offset": "439984", + "green_text": "mT up-date App.", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\INS03.STR", + "node_name": "SSkn03", + "protocol_lines": { + "1": "47", + "2": "48", + "3": "49", + "4": "50" + }, + "site": "A", + "type": "7", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1113": { + "SLPS_016_0x offset": "439744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[11]", + "node_name": "P2-03", + "protocol_lines": { + "1": "46", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "9", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1114": { + "SLPS_016_0x offset": "420464", + "green_text": "", + "image_table_indices": { + "1": "59", + "2": "241", + "3": "466" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[11]", + "node_name": "Lda035", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "283", + "2": "275", + "3": "219" + } + }, + "1115": { + "SLPS_016_0x offset": "420504", + "green_text": "", + "image_table_indices": { + "1": "242", + "2": "60", + "3": "34" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[12]", + "node_name": "Lda036", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "281", + "2": "217", + "3": "284" + } + }, + "1116": { + "SLPS_016_0x offset": "420584", + "green_text": "", + "image_table_indices": { + "1": "470", + "2": "255", + "3": "64" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[14]", + "node_name": "Lda038", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "286", + "2": "135", + "3": "3" + } + }, + "1117": { + "SLPS_016_0x offset": "420624", + "green_text": "", + "image_table_indices": { + "1": "471", + "2": "65", + "3": "311" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[15]", + "node_name": "Lda039", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "4", + "2": "208", + "3": "64" + } + }, + "1118": { + "SLPS_016_0x offset": "420664", + "green_text": "", + "image_table_indices": { + "1": "73", + "2": "472", + "3": "312" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[16]", + "node_name": "Lda040", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "227", + "upgrade_requirement": "1", + "words": { + "1": "287", + "2": "95", + "3": "160" + } + }, + "1119": { + "SLPS_016_0x offset": "411544", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F001.STR", + "node_name": "Dc1001", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "0", + "2": "1", + "3": "2" + } + }, + "1120": { + "SLPS_016_0x offset": "414904", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "199", + "2": "327", + "3": "104" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[27]", + "node_name": "Cou028", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "177", + "2": "178", + "3": "93" + } + }, + "1121": { + "SLPS_016_0x offset": "414944", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "200", + "2": "106", + "3": "328" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[28]", + "node_name": "Cou029", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "84", + "upgrade_requirement": "2", + "words": { + "1": "2", + "2": "65", + "3": "179" + } + }, + "1122": { + "SLPS_016_0x offset": "416784", + "green_text": "", + "image_table_indices": { + "1": "532", + "2": "382", + "3": "431" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[27]", + "node_name": "Dia022", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "84", + "upgrade_requirement": "2", + "words": { + "1": "71", + "2": "153", + "3": "223" + } + }, + "1123": { + "SLPS_016_0x offset": "420544", + "green_text": "", + "image_table_indices": { + "1": "243", + "2": "460", + "3": "61" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[13]", + "node_name": "Lda037", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "224", + "upgrade_requirement": "1", + "words": { + "1": "285", + "2": "105", + "3": "205" + } + }, + "1201": { + "SLPS_016_0x offset": "433984", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN10.XA[22]", + "node_name": "TaK044", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "316", + "2": "-1", + "3": "-1" + } + }, + "1202": { + "SLPS_016_0x offset": "420704", + "green_text": "", + "image_table_indices": { + "1": "77", + "2": "313", + "3": "473" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[17]", + "node_name": "Lda041", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "287", + "2": "135", + "3": "67" + } + }, + "1203": { + "SLPS_016_0x offset": "420744", + "green_text": "", + "image_table_indices": { + "1": "314", + "2": "78", + "3": "474" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[18]", + "node_name": "Lda042", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "58", + "2": "139", + "3": "288" + } + }, + "1204": { + "SLPS_016_0x offset": "420784", + "green_text": "", + "image_table_indices": { + "1": "315", + "2": "477", + "3": "84" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[19]", + "node_name": "Lda043", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "230", + "upgrade_requirement": "1", + "words": { + "1": "253", + "2": "140", + "3": "123" + } + }, + "1206": { + "SLPS_016_0x offset": "434024", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[23]", + "node_name": "TaK045", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "237", + "2": "-1", + "3": "-1" + } + }, + "1207": { + "SLPS_016_0x offset": "437944", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN12.XA[26]", + "node_name": "TaK143", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "43", + "2": "-1", + "3": "-1" + } + }, + "1208": { + "SLPS_016_0x offset": "434104", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN10.XA[25]", + "node_name": "TaK047", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "4", + "2": "-1", + "3": "-1" + } + }, + "1209": { + "SLPS_016_0x offset": "437984", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[27]", + "node_name": "TaK144", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "64", + "2": "-1", + "3": "-1" + } + }, + "1211": { + "SLPS_016_0x offset": "420824", + "green_text": "", + "image_table_indices": { + "1": "478", + "2": "316", + "3": "89" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[20]", + "node_name": "Lda044", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "213", + "2": "102", + "3": "254" + } + }, + "1212": { + "SLPS_016_0x offset": "420864", + "green_text": "", + "image_table_indices": { + "1": "624", + "2": "90", + "3": "317" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[21]", + "node_name": "Lda045", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "281", + "2": "289", + "3": "97" + } + }, + "1213": { + "SLPS_016_0x offset": "420904", + "green_text": "", + "image_table_indices": { + "1": "91", + "2": "278", + "3": "318" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[22]", + "node_name": "Lda046", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "233", + "upgrade_requirement": "1", + "words": { + "1": "211", + "2": "237", + "3": "284" + } + }, + "1214": { + "SLPS_016_0x offset": "434064", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN10.XA[24]", + "node_name": "TaK046", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "220", + "2": "-1", + "3": "-1" + } + }, + "1215": { + "SLPS_016_0x offset": "412424", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F037.STR", + "node_name": "Dc1023", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "60", + "2": "61", + "3": "62" + } + }, + "1216": { + "SLPS_016_0x offset": "414984", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "107", + "2": "201", + "3": "332" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[29]", + "node_name": "Cou030", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "26", + "2": "180", + "3": "64" + } + }, + "1217": { + "SLPS_016_0x offset": "415024", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "108", + "2": "333", + "3": "202" + }, + "is_hidden": "0", + "media_file": "LAIN01.XA[30]", + "node_name": "Cou031", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "86", + "upgrade_requirement": "2", + "words": { + "1": "65", + "2": "181", + "3": "182" + } + }, + "1218": { + "SLPS_016_0x offset": "416824", + "green_text": "", + "image_table_indices": { + "1": "535", + "2": "432", + "3": "383" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[28]", + "node_name": "Dia023", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "86", + "upgrade_requirement": "2", + "words": { + "1": "134", + "2": "180", + "3": "5" + } + }, + "1219": { + "SLPS_016_0x offset": "434144", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN10.XA[26]", + "node_name": "TaK048", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "184", + "2": "-1", + "3": "-1" + } + }, + "1220": { + "SLPS_016_0x offset": "420944", + "green_text": "", + "image_table_indices": { + "1": "96", + "2": "319", + "3": "481" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[23]", + "node_name": "Lda047", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "258", + "2": "27", + "3": "195" + } + }, + "1221": { + "SLPS_016_0x offset": "420984", + "green_text": "", + "image_table_indices": { + "1": "345", + "2": "97", + "3": "482" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[24]", + "node_name": "Lda048", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "213", + "2": "227", + "3": "283" + } + }, + "1223": { + "SLPS_016_0x offset": "434304", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN10.XA[30]", + "node_name": "TaK052", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "102", + "2": "-1", + "3": "-1" + } + }, + "1300": { + "SLPS_016_0x offset": "421144", + "green_text": "", + "image_table_indices": { + "1": "113", + "2": "485", + "3": "459" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[28]", + "node_name": "Lda052", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "239", + "upgrade_requirement": "1", + "words": { + "1": "140", + "2": "142", + "3": "289" + } + }, + "1302": { + "SLPS_016_0x offset": "434184", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN10.XA[27]", + "node_name": "TaK049", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "133", + "2": "-1", + "3": "-1" + } + }, + "1303": { + "SLPS_016_0x offset": "438024", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[28]", + "node_name": "TaK145", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "10", + "2": "-1", + "3": "-1" + } + }, + "1305": { + "SLPS_016_0x offset": "421024", + "green_text": "", + "image_table_indices": { + "1": "10", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[25]", + "node_name": "Lda049", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "290", + "2": "195", + "3": "291" + } + }, + "1306": { + "SLPS_016_0x offset": "421064", + "green_text": "", + "image_table_indices": { + "1": "483", + "2": "436", + "3": "100" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[26]", + "node_name": "Lda050", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "237", + "upgrade_requirement": "2", + "words": { + "1": "292", + "2": "113", + "3": "218" + } + }, + "1307": { + "SLPS_016_0x offset": "421104", + "green_text": "", + "image_table_indices": { + "1": "484", + "2": "101", + "3": "444" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[27]", + "node_name": "Lda051", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "291", + "2": "219", + "3": "206" + } + }, + "1308": { + "SLPS_016_0x offset": "421264", + "green_text": "", + "image_table_indices": { + "1": "784", + "2": "493", + "3": "128" + }, + "is_hidden": "0", + "media_file": "LAIN04.XA[31]", + "node_name": "Lda055", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "242", + "upgrade_requirement": "2", + "words": { + "1": "65", + "2": "20", + "3": "113" + } + }, + "1309": { + "SLPS_016_0x offset": "412264", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F033.STR", + "node_name": "Dc1019", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "20", + "2": "51", + "3": "52" + } + }, + "1310": { + "SLPS_016_0x offset": "434224", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN10.XA[28]", + "node_name": "TaK050", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "23", + "2": "-1", + "3": "-1" + } + }, + "1312": { + "SLPS_016_0x offset": "434264", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN10.XA[29]", + "node_name": "TaK051", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "37", + "2": "-1", + "3": "-1" + } + }, + "1313": { + "SLPS_016_0x offset": "438064", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[29]", + "node_name": "TaK146", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "263", + "2": "-1", + "3": "-1" + } + }, + "1314": { + "SLPS_016_0x offset": "421184", + "green_text": "", + "image_table_indices": { + "1": "120", + "2": "288", + "3": "486" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[29]", + "node_name": "Lda053", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "293", + "2": "59", + "3": "142" + } + }, + "1315": { + "SLPS_016_0x offset": "421224", + "green_text": "", + "image_table_indices": { + "1": "626", + "2": "127", + "3": "489" + }, + "is_hidden": "3", + "media_file": "LAIN04.XA[30]", + "node_name": "Lda054", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "62", + "2": "294", + "3": "60" + } + }, + "1317": { + "SLPS_016_0x offset": "421304", + "green_text": "", + "image_table_indices": { + "1": "494", + "2": "420", + "3": "129" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[0]", + "node_name": "Lda056", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "113", + "2": "295", + "3": "37" + } + }, + "1318": { + "SLPS_016_0x offset": "421344", + "green_text": "", + "image_table_indices": { + "1": "232", + "2": "130", + "3": "671" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[1]", + "node_name": "Lda057", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "296", + "2": "278", + "3": "42" + } + }, + "1319": { + "SLPS_016_0x offset": "421384", + "green_text": "", + "image_table_indices": { + "1": "131", + "2": "497", + "3": "672" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[2]", + "node_name": "Lda058", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "151", + "2": "296", + "3": "297" + } + }, + "1320": { + "SLPS_016_0x offset": "421424", + "green_text": "", + "image_table_indices": { + "1": "132", + "2": "675", + "3": "499" + }, + "is_hidden": "0", + "media_file": "LAIN05.XA[3]", + "node_name": "Lda059", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "246", + "upgrade_requirement": "2", + "words": { + "1": "83", + "2": "13", + "3": "7" + } + }, + "1321": { + "SLPS_016_0x offset": "415064", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "334", + "2": "109", + "3": "236" + }, + "is_hidden": "3", + "media_file": "LAIN01.XA[31]", + "node_name": "Cou032", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "54", + "2": "183", + "3": "128" + } + }, + "1322": { + "SLPS_016_0x offset": "415104", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "336", + "2": "244", + "3": "110" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[0]", + "node_name": "Cou033", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "88", + "upgrade_requirement": "2", + "words": { + "1": "5", + "2": "145", + "3": "184" + } + }, + "1323": { + "SLPS_016_0x offset": "416864", + "green_text": "", + "image_table_indices": { + "1": "433", + "2": "537", + "3": "384" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[29]", + "node_name": "Dia024", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "88", + "upgrade_requirement": "2", + "words": { + "1": "69", + "2": "207", + "3": "52" + } + }, + "1400": { + "SLPS_016_0x offset": "439784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[12]", + "node_name": "P2-04", + "protocol_lines": { + "1": "46", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "9", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1402": { + "SLPS_016_0x offset": "421464", + "green_text": "", + "image_table_indices": { + "1": "676", + "2": "134", + "3": "500" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[4]", + "node_name": "Lda060", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "298", + "2": "297", + "3": "82" + } + }, + "1403": { + "SLPS_016_0x offset": "421504", + "green_text": "", + "image_table_indices": { + "1": "681", + "2": "503", + "3": "135" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[5]", + "node_name": "Lda061", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "283", + "2": "299", + "3": "165" + } + }, + "1406": { + "SLPS_016_0x offset": "434344", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN10.XA[31]", + "node_name": "TaK053", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "328", + "2": "-1", + "3": "-1" + } + }, + "1408": { + "SLPS_016_0x offset": "412184", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F027.STR", + "node_name": "Dc1017", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "46", + "2": "47", + "3": "29" + } + }, + "1409": { + "SLPS_016_0x offset": "434384", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[0]", + "node_name": "TaK054", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "250", + "2": "-1", + "3": "-1" + } + }, + "1410": { + "SLPS_016_0x offset": "438144", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN12.XA[31]", + "node_name": "TaK148", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "141", + "2": "-1", + "3": "-1" + } + }, + "1411": { + "SLPS_016_0x offset": "421544", + "green_text": "", + "image_table_indices": { + "1": "11", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[6]", + "node_name": "Lda062", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "49", + "2": "45", + "3": "140" + } + }, + "1412": { + "SLPS_016_0x offset": "421584", + "green_text": "", + "image_table_indices": { + "1": "505", + "2": "136", + "3": "683" + }, + "is_hidden": "0", + "media_file": "LAIN05.XA[7]", + "node_name": "Lda063", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "250", + "upgrade_requirement": "2", + "words": { + "1": "300", + "2": "23", + "3": "177" + } + }, + "1414": { + "SLPS_016_0x offset": "434424", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[1]", + "node_name": "TaK055", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "223", + "2": "-1", + "3": "-1" + } + }, + "1415": { + "SLPS_016_0x offset": "438104", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN12.XA[30]", + "node_name": "TaK147", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "279", + "2": "-1", + "3": "-1" + } + }, + "1416": { + "SLPS_016_0x offset": "434464", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[2]", + "node_name": "TaK056", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "191", + "2": "-1", + "3": "-1" + } + }, + "1417": { + "SLPS_016_0x offset": "438184", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[0]", + "node_name": "TaK149", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "294", + "2": "-1", + "3": "-1" + } + }, + "1418": { + "SLPS_016_0x offset": "439824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[13]", + "node_name": "P2-05", + "protocol_lines": { + "1": "46", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "9", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1419": { + "SLPS_016_0x offset": "434504", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN11.XA[3]", + "node_name": "TaK057", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "215", + "2": "-1", + "3": "-1" + } + }, + "1420": { + "SLPS_016_0x offset": "421624", + "green_text": "", + "image_table_indices": { + "1": "137", + "2": "506", + "3": "684" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[8]", + "node_name": "Lda064", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "219", + "2": "301", + "3": "186" + } + }, + "1421": { + "SLPS_016_0x offset": "421664", + "green_text": "", + "image_table_indices": { + "1": "138", + "2": "685", + "3": "508" + }, + "is_hidden": "0", + "media_file": "LAIN05.XA[9]", + "node_name": "Lda065", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "252", + "upgrade_requirement": "2", + "words": { + "1": "241", + "2": "282", + "3": "195" + } + }, + "1422": { + "SLPS_016_0x offset": "411584", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F002.STR", + "node_name": "Dc1002", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "3", + "2": "4", + "3": "5" + } + }, + "1500": { + "SLPS_016_0x offset": "411624", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F003.STR", + "node_name": "Dc1003", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "6", + "2": "7", + "3": "8" + } + }, + "1502": { + "SLPS_016_0x offset": "434544", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[4]", + "node_name": "TaK058", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "73", + "2": "-1", + "3": "-1" + } + }, + "1503": { + "SLPS_016_0x offset": "438224", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN13.XA[1]", + "node_name": "TaK150", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "65", + "2": "-1", + "3": "-1" + } + }, + "1505": { + "SLPS_016_0x offset": "421704", + "green_text": "", + "image_table_indices": { + "1": "690", + "2": "139", + "3": "509" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[10]", + "node_name": "Lda066", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "186", + "2": "302", + "3": "303" + } + }, + "1506": { + "SLPS_016_0x offset": "421744", + "green_text": "", + "image_table_indices": { + "1": "695", + "2": "510", + "3": "141" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[11]", + "node_name": "Lda067", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "257", + "2": "186", + "3": "302" + } + }, + "1507": { + "SLPS_016_0x offset": "421784", + "green_text": "", + "image_table_indices": { + "1": "343", + "2": "697", + "3": "142" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[12]", + "node_name": "Lda068", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "304", + "2": "5", + "3": "254" + } + }, + "1508": { + "SLPS_016_0x offset": "421904", + "green_text": "", + "image_table_indices": { + "1": "147", + "2": "700", + "3": "513" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[15]", + "node_name": "Lda071", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "305", + "2": "205", + "3": "278" + } + }, + "1509": { + "SLPS_016_0x offset": "421944", + "green_text": "", + "image_table_indices": { + "1": "705", + "2": "148", + "3": "515" + }, + "is_hidden": "16", + "media_file": "LAIN05.XA[16]", + "node_name": "Lda072", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "259", + "upgrade_requirement": "2", + "words": { + "1": "145", + "2": "89", + "3": "2" + } + }, + "1510": { + "SLPS_016_0x offset": "415144", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "246", + "2": "338", + "3": "111" + }, + "is_hidden": "3", + "media_file": "LAIN02.XA[1]", + "node_name": "Cou034", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "16", + "2": "185", + "3": "186" + } + }, + "1511": { + "SLPS_016_0x offset": "416904", + "green_text": "", + "image_table_indices": { + "1": "434", + "2": "385", + "3": "540" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[30]", + "node_name": "Dia025", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "90", + "upgrade_requirement": "2", + "words": { + "1": "65", + "2": "135", + "3": "43" + } + }, + "1512": { + "SLPS_016_0x offset": "411704", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F006.STR", + "node_name": "Dc1005", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "12", + "2": "13", + "3": "14" + } + }, + "1513": { + "SLPS_016_0x offset": "434584", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[5]", + "node_name": "TaK059", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "92", + "2": "-1", + "3": "-1" + } + }, + "1514": { + "SLPS_016_0x offset": "421824", + "green_text": "", + "image_table_indices": { + "1": "511", + "2": "143", + "3": "698" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[13]", + "node_name": "Lda069", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "5", + "2": "237", + "3": "81" + } + }, + "1515": { + "SLPS_016_0x offset": "421864", + "green_text": "", + "image_table_indices": { + "1": "146", + "2": "512", + "3": "699" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[14]", + "node_name": "Lda070", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "5", + "2": "280", + "3": "195" + } + }, + "1516": { + "SLPS_016_0x offset": "422024", + "green_text": "", + "image_table_indices": { + "1": "525", + "2": "707", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN05.XA[18]", + "node_name": "Lda074", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "261", + "upgrade_requirement": "2", + "words": { + "1": "145", + "2": "18", + "3": "82" + } + }, + "1517": { + "SLPS_016_0x offset": "422064", + "green_text": "", + "image_table_indices": { + "1": "149", + "2": "526", + "3": "708" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[19]", + "node_name": "Lda075", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "150", + "2": "295", + "3": "307" + } + }, + "1518": { + "SLPS_016_0x offset": "411744", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F008.STR", + "node_name": "Dc1006", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "15", + "2": "16", + "3": "17" + } + }, + "1520": { + "SLPS_016_0x offset": "434624", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[6]", + "node_name": "TaK060", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "157", + "2": "-1", + "3": "-1" + } + }, + "1521": { + "SLPS_016_0x offset": "438264", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[2]", + "node_name": "TaK151", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "317", + "2": "-1", + "3": "-1" + } + }, + "1523": { + "SLPS_016_0x offset": "421984", + "green_text": "", + "image_table_indices": { + "1": "12", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[17]", + "node_name": "Lda073", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "306", + "2": "290", + "3": "287" + } + }, + "1600": { + "SLPS_016_0x offset": "422104", + "green_text": "", + "image_table_indices": { + "1": "151", + "2": "709", + "3": "527" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[20]", + "node_name": "Lda076", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "195", + "2": "138", + "3": "137" + } + }, + "1601": { + "SLPS_016_0x offset": "422144", + "green_text": "", + "image_table_indices": { + "1": "710", + "2": "152", + "3": "530" + }, + "is_hidden": "0", + "media_file": "LAIN05.XA[21]", + "node_name": "Lda077", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "264", + "upgrade_requirement": "2", + "words": { + "1": "195", + "2": "177", + "3": "63" + } + }, + "1602": { + "SLPS_016_0x offset": "422184", + "green_text": "", + "image_table_indices": { + "1": "711", + "2": "534", + "3": "153" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[22]", + "node_name": "Lda078", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "277", + "2": "257", + "3": "250" + } + }, + "1603": { + "SLPS_016_0x offset": "422224", + "green_text": "", + "image_table_indices": { + "1": "538", + "2": "712", + "3": "156" + }, + "is_hidden": "16", + "media_file": "LAIN05.XA[23]", + "node_name": "Lda079", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "266", + "upgrade_requirement": "2", + "words": { + "1": "162", + "2": "5", + "3": "282" + } + }, + "1604": { + "SLPS_016_0x offset": "434664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[7]", + "node_name": "TaK061", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "330", + "2": "-1", + "3": "-1" + } + }, + "1605": { + "SLPS_016_0x offset": "415184", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "247", + "2": "112", + "3": "339" + }, + "is_hidden": "3", + "media_file": "LAIN02.XA[2]", + "node_name": "Cou035", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "187", + "2": "188", + "3": "189" + } + }, + "1606": { + "SLPS_016_0x offset": "411784", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F010.STR", + "node_name": "Dc1007", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "18", + "2": "19", + "3": "20" + } + }, + "1607": { + "SLPS_016_0x offset": "416944", + "green_text": "", + "image_table_indices": { + "1": "386", + "2": "435", + "3": "557" + }, + "is_hidden": "0", + "media_file": "LAIN02.XA[31]", + "node_name": "Dia026", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "91", + "upgrade_requirement": "2", + "words": { + "1": "187", + "2": "224", + "3": "189" + } + }, + "1608": { + "SLPS_016_0x offset": "411944", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F015.STR", + "node_name": "Dc1011", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "30", + "2": "31", + "3": "32" + } + }, + "1609": { + "SLPS_016_0x offset": "422264", + "green_text": "", + "image_table_indices": { + "1": "422", + "2": "157", + "3": "713" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[24]", + "node_name": "Lda080", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "280", + "2": "206", + "3": "277" + } + }, + "1610": { + "SLPS_016_0x offset": "422304", + "green_text": "", + "image_table_indices": { + "1": "158", + "2": "541", + "3": "714" + }, + "is_hidden": "16", + "media_file": "LAIN05.XA[25]", + "node_name": "Lda081", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "268", + "upgrade_requirement": "2", + "words": { + "1": "308", + "2": "23", + "3": "140" + } + }, + "1611": { + "SLPS_016_0x offset": "422344", + "green_text": "", + "image_table_indices": { + "1": "159", + "2": "715", + "3": "542" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[26]", + "node_name": "Lda082", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "73", + "2": "309", + "3": "307" + } + }, + "1612": { + "SLPS_016_0x offset": "422384", + "green_text": "", + "image_table_indices": { + "1": "716", + "2": "160", + "3": "543" + }, + "is_hidden": "16", + "media_file": "LAIN05.XA[27]", + "node_name": "Lda083", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "270", + "upgrade_requirement": "2", + "words": { + "1": "55", + "2": "216", + "3": "310" + } + }, + "1614": { + "SLPS_016_0x offset": "434704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[8]", + "node_name": "TaK062", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "327", + "2": "-1", + "3": "-1" + } + }, + "1615": { + "SLPS_016_0x offset": "438304", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[3]", + "node_name": "TaK152", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "324", + "2": "-1", + "3": "-1" + } + }, + "1618": { + "SLPS_016_0x offset": "422424", + "green_text": "", + "image_table_indices": { + "1": "13", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN05.XA[28]", + "node_name": "Lda084", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "186", + "2": "269", + "3": "311" + } + }, + "1619": { + "SLPS_016_0x offset": "422464", + "green_text": "", + "image_table_indices": { + "1": "552", + "2": "717", + "3": "161" + }, + "is_hidden": "16", + "media_file": "LAIN05.XA[29]", + "node_name": "Lda085", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "272", + "upgrade_requirement": "2", + "words": { + "1": "312", + "2": "65", + "3": "55" + } + }, + "1620": { + "SLPS_016_0x offset": "422504", + "green_text": "", + "image_table_indices": { + "1": "554", + "2": "162", + "3": "718" + }, + "is_hidden": "3", + "media_file": "LAIN05.XA[30]", + "node_name": "Lda086", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "295", + "2": "293", + "3": "165" + } + }, + "1621": { + "SLPS_016_0x offset": "422544", + "green_text": "", + "image_table_indices": { + "1": "168", + "2": "560", + "3": "719" + }, + "is_hidden": "16", + "media_file": "LAIN05.XA[31]", + "node_name": "Lda087", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "274", + "upgrade_requirement": "2", + "words": { + "1": "165", + "2": "221", + "3": "205" + } + }, + "1622": { + "SLPS_016_0x offset": "411984", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F020.STR", + "node_name": "Dc1012", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "33", + "2": "34", + "3": "35" + } + }, + "1700": { + "SLPS_016_0x offset": "440024", + "green_text": "mT up-date App.", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\INS04.STR", + "node_name": "SSkn04", + "protocol_lines": { + "1": "47", + "2": "48", + "3": "49", + "4": "50" + }, + "site": "A", + "type": "7", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1701": { + "SLPS_016_0x offset": "439624", + "green_text": "nT APPLICATION", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[8]", + "node_name": "GaTE04", + "protocol_lines": { + "1": "42", + "2": "43", + "3": "44", + "4": "45" + }, + "site": "A", + "type": "8", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1703": { + "SLPS_016_0x offset": "422584", + "green_text": "", + "image_table_indices": { + "1": "423", + "2": "720", + "3": "563" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[0]", + "node_name": "Lda088", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "313", + "2": "92", + "3": "137" + } + }, + "1704": { + "SLPS_016_0x offset": "422624", + "green_text": "", + "image_table_indices": { + "1": "721", + "2": "169", + "3": "573" + }, + "is_hidden": "16", + "media_file": "LAIN06.XA[1]", + "node_name": "Lda089", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "276", + "upgrade_requirement": "2", + "words": { + "1": "186", + "2": "23", + "3": "205" + } + }, + "1705": { + "SLPS_016_0x offset": "422664", + "green_text": "", + "image_table_indices": { + "1": "722", + "2": "574", + "3": "172" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[2]", + "node_name": "Lda090", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "22", + "2": "306", + "3": "314" + } + }, + "1707": { + "SLPS_016_0x offset": "412304", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F034.STR", + "node_name": "Dc1020", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "53", + "2": "54", + "3": "55" + } + }, + "1709": { + "SLPS_016_0x offset": "434744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[9]", + "node_name": "TaK063", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "82", + "2": "-1", + "3": "-1" + } + }, + "1710": { + "SLPS_016_0x offset": "438344", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN13.XA[4]", + "node_name": "TaK153", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "275", + "2": "-1", + "3": "-1" + } + }, + "1711": { + "SLPS_016_0x offset": "434784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[10]", + "node_name": "TaK064", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "333", + "2": "-1", + "3": "-1" + } + }, + "1712": { + "SLPS_016_0x offset": "422704", + "green_text": "", + "image_table_indices": { + "1": "575", + "2": "723", + "3": "203" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[3]", + "node_name": "Lda091", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "61", + "2": "62", + "3": "315" + } + }, + "1713": { + "SLPS_016_0x offset": "422744", + "green_text": "", + "image_table_indices": { + "1": "576", + "2": "207", + "3": "724" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[4]", + "node_name": "Lda092", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "316", + "2": "89", + "3": "110" + } + }, + "1714": { + "SLPS_016_0x offset": "422784", + "green_text": "", + "image_table_indices": { + "1": "208", + "2": "581", + "3": "725" + }, + "is_hidden": "0", + "media_file": "LAIN06.XA[5]", + "node_name": "Lda093", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "280", + "upgrade_requirement": "2", + "words": { + "1": "176", + "2": "5", + "3": "317" + } + }, + "1716": { + "SLPS_016_0x offset": "422944", + "green_text": "", + "image_table_indices": { + "1": "590", + "2": "729", + "3": "212" + }, + "is_hidden": "16", + "media_file": "LAIN06.XA[9]", + "node_name": "Lda097", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "284", + "upgrade_requirement": "2", + "words": { + "1": "45", + "2": "102", + "3": "318" + } + }, + "1717": { + "SLPS_016_0x offset": "412064", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F024.STR", + "node_name": "Dc1014", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "39", + "2": "40", + "3": "41" + } + }, + "1719": { + "SLPS_016_0x offset": "434824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[11]", + "node_name": "TaK065", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "107", + "2": "-1", + "3": "-1" + } + }, + "1720": { + "SLPS_016_0x offset": "438384", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN13.XA[5]", + "node_name": "TaK154", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "406", + "2": "-1", + "3": "-1" + } + }, + "1721": { + "SLPS_016_0x offset": "422824", + "green_text": "", + "image_table_indices": { + "1": "424", + "2": "726", + "3": "587" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[6]", + "node_name": "Lda094", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "248", + "2": "69", + "3": "136" + } + }, + "1722": { + "SLPS_016_0x offset": "422864", + "green_text": "", + "image_table_indices": { + "1": "727", + "2": "209", + "3": "588" + }, + "is_hidden": "16", + "media_file": "LAIN06.XA[7]", + "node_name": "Lda095", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "282", + "upgrade_requirement": "2", + "words": { + "1": "145", + "2": "8", + "3": "59" + } + }, + "1723": { + "SLPS_016_0x offset": "422904", + "green_text": "", + "image_table_indices": { + "1": "728", + "2": "589", + "3": "210" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[8]", + "node_name": "Lda096", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "247", + "2": "304", + "3": "272" + } + }, + "1800": { + "SLPS_016_0x offset": "423064", + "green_text": "", + "image_table_indices": { + "1": "215", + "2": "732", + "3": "597" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[12]", + "node_name": "Lda100", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "271", + "2": "303", + "3": "160" + } + }, + "1801": { + "SLPS_016_0x offset": "423104", + "green_text": "", + "image_table_indices": { + "1": "302", + "2": "216", + "3": "598" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[13]", + "node_name": "Lda101", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "95", + "2": "62", + "3": "292" + } + }, + "1804": { + "SLPS_016_0x offset": "434864", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[12]", + "node_name": "TaK066", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "2", + "2": "-1", + "3": "-1" + } + }, + "1806": { + "SLPS_016_0x offset": "422984", + "green_text": "", + "image_table_indices": { + "1": "591", + "2": "213", + "3": "730" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[10]", + "node_name": "Lda098", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "257", + "2": "35", + "3": "136" + } + }, + "1807": { + "SLPS_016_0x offset": "423024", + "green_text": "", + "image_table_indices": { + "1": "214", + "2": "-1", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN06.XA[11]", + "node_name": "Lda099", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "286", + "upgrade_requirement": "2", + "words": { + "1": "292", + "2": "15", + "3": "319" + } + }, + "1808": { + "SLPS_016_0x offset": "423184", + "green_text": "", + "image_table_indices": { + "1": "601", + "2": "734", + "3": "218" + }, + "is_hidden": "16", + "media_file": "LAIN06.XA[15]", + "node_name": "Lda103", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "290", + "upgrade_requirement": "3", + "words": { + "1": "65", + "2": "43", + "3": "143" + } + }, + "1809": { + "SLPS_016_0x offset": "423224", + "green_text": "", + "image_table_indices": { + "1": "602", + "2": "219", + "3": "735" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[16]", + "node_name": "Lda104", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "313", + "2": "320", + "3": "321" + } + }, + "1810": { + "SLPS_016_0x offset": "423264", + "green_text": "", + "image_table_indices": { + "1": "221", + "2": "603", + "3": "736" + }, + "is_hidden": "16", + "media_file": "LAIN06.XA[17]", + "node_name": "Lda105", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "292", + "upgrade_requirement": "3", + "words": { + "1": "322", + "2": "186", + "3": "287" + } + }, + "1811": { + "SLPS_016_0x offset": "434904", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[13]", + "node_name": "TaK067", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "156", + "2": "-1", + "3": "-1" + } + }, + "1812": { + "SLPS_016_0x offset": "438424", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[6]", + "node_name": "TaK155", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "20", + "2": "-1", + "3": "-1" + } + }, + "1813": { + "SLPS_016_0x offset": "434944", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN11.XA[14]", + "node_name": "TaK068", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "275", + "2": "-1", + "3": "-1" + } + }, + "1815": { + "SLPS_016_0x offset": "423144", + "green_text": "", + "image_table_indices": { + "1": "733", + "2": "599", + "3": "217" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[14]", + "node_name": "Lda102", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "186", + "2": "110", + "3": "315" + } + }, + "1816": { + "SLPS_016_0x offset": "423304", + "green_text": "", + "image_table_indices": { + "1": "222", + "2": "737", + "3": "604" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[18]", + "node_name": "Lda106", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "113", + "2": "286", + "3": "323" + } + }, + "1817": { + "SLPS_016_0x offset": "423344", + "green_text": "", + "image_table_indices": { + "1": "738", + "2": "223", + "3": "606" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[19]", + "node_name": "Lda107", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "37", + "2": "4", + "3": "237" + } + }, + "1818": { + "SLPS_016_0x offset": "423384", + "green_text": "", + "image_table_indices": { + "1": "739", + "2": "609", + "3": "224" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[20]", + "node_name": "Lda108", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "306", + "2": "313", + "3": "47" + } + }, + "1819": { + "SLPS_016_0x offset": "434984", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[15]", + "node_name": "TaK069", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "254", + "2": "-1", + "3": "-1" + } + }, + "1820": { + "SLPS_016_0x offset": "438464", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN13.XA[7]", + "node_name": "TaK156", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "97", + "2": "-1", + "3": "-1" + } + }, + "1821": { + "SLPS_016_0x offset": "435024", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[16]", + "node_name": "TaK070", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "172", + "2": "-1", + "3": "-1" + } + }, + "1822": { + "SLPS_016_0x offset": "435064", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[17]", + "node_name": "TaK071", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "73", + "2": "-1", + "3": "-1" + } + }, + "1823": { + "SLPS_016_0x offset": "438504", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN13.XA[8]", + "node_name": "TaK157", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "249", + "2": "-1", + "3": "-1" + } + }, + "1901": { + "SLPS_016_0x offset": "423424", + "green_text": "", + "image_table_indices": { + "1": "610", + "2": "740", + "3": "225" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[21]", + "node_name": "Lda109", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "257", + "2": "324", + "3": "179" + } + }, + "1902": { + "SLPS_016_0x offset": "423464", + "green_text": "", + "image_table_indices": { + "1": "611", + "2": "226", + "3": "741" + }, + "is_hidden": "0", + "media_file": "LAIN06.XA[22]", + "node_name": "Lda110", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "297", + "upgrade_requirement": "3", + "words": { + "1": "69", + "2": "307", + "3": "257" + } + }, + "1903": { + "SLPS_016_0x offset": "423504", + "green_text": "", + "image_table_indices": { + "1": "227", + "2": "612", + "3": "742" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[23]", + "node_name": "Lda111", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "208", + "2": "37", + "3": "289" + } + }, + "1904": { + "SLPS_016_0x offset": "423544", + "green_text": "", + "image_table_indices": { + "1": "228", + "2": "743", + "3": "614" + }, + "is_hidden": "0", + "media_file": "LAIN06.XA[24]", + "node_name": "Lda112", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "299", + "upgrade_requirement": "3", + "words": { + "1": "195", + "2": "219", + "3": "201" + } + }, + "1905": { + "SLPS_016_0x offset": "435104", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[18]", + "node_name": "TaK072", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "331", + "2": "-1", + "3": "-1" + } + }, + "1906": { + "SLPS_016_0x offset": "435144", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[19]", + "node_name": "TaK073", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "102", + "2": "-1", + "3": "-1" + } + }, + "1907": { + "SLPS_016_0x offset": "438544", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN13.XA[9]", + "node_name": "TaK158", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "387", + "2": "-1", + "3": "-1" + } + }, + "1908": { + "SLPS_016_0x offset": "435224", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[21]", + "node_name": "TaK075", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "275", + "2": "-1", + "3": "-1" + } + }, + "1909": { + "SLPS_016_0x offset": "438584", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN13.XA[10]", + "node_name": "TaK159", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "89", + "2": "-1", + "3": "-1" + } + }, + "1910": { + "SLPS_016_0x offset": "423584", + "green_text": "", + "image_table_indices": { + "1": "731", + "2": "229", + "3": "615" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[25]", + "node_name": "Lda113", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "169", + "2": "23", + "3": "81" + } + }, + "1911": { + "SLPS_016_0x offset": "423624", + "green_text": "", + "image_table_indices": { + "1": "745", + "2": "616", + "3": "230" + }, + "is_hidden": "0", + "media_file": "LAIN06.XA[26]", + "node_name": "Lda114", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "301", + "upgrade_requirement": "3", + "words": { + "1": "169", + "2": "102", + "3": "325" + } + }, + "1912": { + "SLPS_016_0x offset": "423664", + "green_text": "", + "image_table_indices": { + "1": "617", + "2": "746", + "3": "233" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[27]", + "node_name": "Lda115", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "323", + "2": "107", + "3": "288" + } + }, + "1913": { + "SLPS_016_0x offset": "423704", + "green_text": "", + "image_table_indices": { + "1": "619", + "2": "234", + "3": "747" + }, + "is_hidden": "0", + "media_file": "LAIN06.XA[28]", + "node_name": "Lda116", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "303", + "upgrade_requirement": "2", + "words": { + "1": "309", + "2": "55", + "3": "266" + } + }, + "1914": { + "SLPS_016_0x offset": "412344", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F035.STR", + "node_name": "Dc1021", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "56", + "2": "8", + "3": "35" + } + }, + "1915": { + "SLPS_016_0x offset": "435184", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[20]", + "node_name": "TaK074", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "166", + "2": "-1", + "3": "-1" + } + }, + "1917": { + "SLPS_016_0x offset": "439864", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "LAIN21.XA[14]", + "node_name": "P2-06", + "protocol_lines": { + "1": "46", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "9", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "-1", + "2": "-1", + "3": "-1" + } + }, + "1918": { + "SLPS_016_0x offset": "435264", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[22]", + "node_name": "TaK076", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "314", + "2": "-1", + "3": "-1" + } + }, + "1919": { + "SLPS_016_0x offset": "423744", + "green_text": "", + "image_table_indices": { + "1": "270", + "2": "620", + "3": "748" + }, + "is_hidden": "19", + "media_file": "LAIN06.XA[29]", + "node_name": "Lda117", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "295", + "2": "69", + "3": "186" + } + }, + "1920": { + "SLPS_016_0x offset": "423784", + "green_text": "", + "image_table_indices": { + "1": "271", + "2": "749", + "3": "621" + }, + "is_hidden": "16", + "media_file": "LAIN06.XA[30]", + "node_name": "Lda118", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "305", + "upgrade_requirement": "3", + "words": { + "1": "287", + "2": "186", + "3": "326" + } + }, + "1921": { + "SLPS_016_0x offset": "423824", + "green_text": "", + "image_table_indices": { + "1": "750", + "2": "273", + "3": "622" + }, + "is_hidden": "3", + "media_file": "LAIN06.XA[31]", + "node_name": "Lda119", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "295", + "2": "327", + "3": "310" + } + }, + "1922": { + "SLPS_016_0x offset": "423864", + "green_text": "", + "image_table_indices": { + "1": "751", + "2": "623", + "3": "274" + }, + "is_hidden": "0", + "media_file": "LAIN07.XA[0]", + "node_name": "Lda120", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "307", + "upgrade_requirement": "3", + "words": { + "1": "328", + "2": "329", + "3": "330" + } + }, + "2000": { + "SLPS_016_0x offset": "435544", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[29]", + "node_name": "TaK083", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "97", + "2": "-1", + "3": "-1" + } + }, + "2001": { + "SLPS_016_0x offset": "435304", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[23]", + "node_name": "TaK077", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "4", + "2": "-1", + "3": "-1" + } + }, + "2002": { + "SLPS_016_0x offset": "438624", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[11]", + "node_name": "TaK160", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "45", + "2": "-1", + "3": "-1" + } + }, + "2004": { + "SLPS_016_0x offset": "423904", + "green_text": "", + "image_table_indices": { + "1": "479", + "2": "752", + "3": "275" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[1]", + "node_name": "Lda121", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "313", + "2": "135", + "3": "130" + } + }, + "2005": { + "SLPS_016_0x offset": "423944", + "green_text": "", + "image_table_indices": { + "1": "625", + "2": "276", + "3": "753" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[2]", + "node_name": "Lda122", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "309", + "upgrade_requirement": "3", + "words": { + "1": "322", + "2": "55", + "3": "143" + } + }, + "2006": { + "SLPS_016_0x offset": "423984", + "green_text": "", + "image_table_indices": { + "1": "480", + "2": "627", + "3": "754" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[3]", + "node_name": "Lda123", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "32", + "2": "265", + "3": "129" + } + }, + "2007": { + "SLPS_016_0x offset": "424024", + "green_text": "", + "image_table_indices": { + "1": "283", + "2": "755", + "3": "632" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[4]", + "node_name": "Lda124", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "311", + "upgrade_requirement": "3", + "words": { + "1": "331", + "2": "14", + "3": "278" + } + }, + "2008": { + "SLPS_016_0x offset": "424184", + "green_text": "", + "image_table_indices": { + "1": "636", + "2": "287", + "3": "759" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[8]", + "node_name": "Lda128", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "315", + "upgrade_requirement": "3", + "words": { + "1": "288", + "2": "334", + "3": "10" + } + }, + "2009": { + "SLPS_016_0x offset": "412584", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F042.STR", + "node_name": "Dc1027", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "68", + "2": "5", + "3": "69" + } + }, + "2010": { + "SLPS_016_0x offset": "415224", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "122", + "2": "248", + "3": "340" + }, + "is_hidden": "3", + "media_file": "LAIN02.XA[3]", + "node_name": "Cou036", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "153", + "2": "97", + "3": "190" + } + }, + "2011": { + "SLPS_016_0x offset": "416984", + "green_text": "", + "image_table_indices": { + "1": "387", + "2": "567", + "3": "438" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[0]", + "node_name": "Dia027", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "92", + "upgrade_requirement": "2", + "words": { + "1": "225", + "2": "209", + "3": "81" + } + }, + "2012": { + "SLPS_016_0x offset": "435344", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[24]", + "node_name": "TaK078", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "392", + "2": "-1", + "3": "-1" + } + }, + "2013": { + "SLPS_016_0x offset": "424064", + "green_text": "", + "image_table_indices": { + "1": "756", + "2": "284", + "3": "633" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[5]", + "node_name": "Lda125", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "332", + "2": "210", + "3": "298" + } + }, + "2014": { + "SLPS_016_0x offset": "424104", + "green_text": "", + "image_table_indices": { + "1": "757", + "2": "634", + "3": "285" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[6]", + "node_name": "Lda126", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "313", + "upgrade_requirement": "3", + "words": { + "1": "186", + "2": "144", + "3": "333" + } + }, + "2015": { + "SLPS_016_0x offset": "424144", + "green_text": "", + "image_table_indices": { + "1": "635", + "2": "758", + "3": "286" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[7]", + "node_name": "Lda127", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "306", + "2": "17", + "3": "92" + } + }, + "2016": { + "SLPS_016_0x offset": "424304", + "green_text": "", + "image_table_indices": { + "1": "762", + "2": "290", + "3": "639" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[11]", + "node_name": "Lda131", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "274", + "2": "336", + "3": "337" + } + }, + "2017": { + "SLPS_016_0x offset": "424344", + "green_text": "", + "image_table_indices": { + "1": "763", + "2": "640", + "3": "292" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[12]", + "node_name": "Lda132", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "319", + "upgrade_requirement": "3", + "words": { + "1": "55", + "2": "186", + "3": "119" + } + }, + "2019": { + "SLPS_016_0x offset": "435504", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[28]", + "node_name": "TaK082", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "93", + "2": "-1", + "3": "-1" + } + }, + "2020": { + "SLPS_016_0x offset": "435384", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN11.XA[25]", + "node_name": "TaK079", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "89", + "2": "-1", + "3": "-1" + } + }, + "2021": { + "SLPS_016_0x offset": "438664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN13.XA[12]", + "node_name": "TaK161", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "184", + "2": "-1", + "3": "-1" + } + }, + "2022": { + "SLPS_016_0x offset": "424224", + "green_text": "", + "image_table_indices": { + "1": "628", + "2": "637", + "3": "760" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[9]", + "node_name": "Lda129", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "204", + "2": "332", + "3": "335" + } + }, + "2023": { + "SLPS_016_0x offset": "424264", + "green_text": "", + "image_table_indices": { + "1": "289", + "2": "761", + "3": "638" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[10]", + "node_name": "Lda130", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "317", + "upgrade_requirement": "3", + "words": { + "1": "288", + "2": "237", + "3": "97" + } + }, + "2100": { + "SLPS_016_0x offset": "424424", + "green_text": "", + "image_table_indices": { + "1": "642", + "2": "294", + "3": "765" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[14]", + "node_name": "Lda134", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "89", + "2": "320", + "3": "2" + } + }, + "2101": { + "SLPS_016_0x offset": "424464", + "green_text": "", + "image_table_indices": { + "1": "295", + "2": "643", + "3": "766" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[15]", + "node_name": "Lda135", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "21", + "2": "205", + "3": "83" + } + }, + "2102": { + "SLPS_016_0x offset": "424504", + "green_text": "", + "image_table_indices": { + "1": "296", + "2": "767", + "3": "644" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[16]", + "node_name": "Lda136", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "323", + "upgrade_requirement": "3", + "words": { + "1": "205", + "2": "63", + "3": "167" + } + }, + "2104": { + "SLPS_016_0x offset": "435424", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN11.XA[26]", + "node_name": "TaK080", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "181", + "2": "-1", + "3": "-1" + } + }, + "2105": { + "SLPS_016_0x offset": "435464", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN11.XA[27]", + "node_name": "TaK081", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "73", + "2": "-1", + "3": "-1" + } + }, + "2106": { + "SLPS_016_0x offset": "438704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN13.XA[13]", + "node_name": "TaK162", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "254", + "2": "-1", + "3": "-1" + } + }, + "2107": { + "SLPS_016_0x offset": "424384", + "green_text": "", + "image_table_indices": { + "1": "641", + "2": "764", + "3": "293" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[13]", + "node_name": "Lda133", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "64", + "2": "338", + "3": "339" + } + }, + "2108": { + "SLPS_016_0x offset": "424544", + "green_text": "", + "image_table_indices": { + "1": "768", + "2": "297", + "3": "645" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[17]", + "node_name": "Lda137", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "338", + "2": "69", + "3": "299" + } + }, + "2109": { + "SLPS_016_0x offset": "424584", + "green_text": "", + "image_table_indices": { + "1": "629", + "2": "646", + "3": "298" + }, + "is_hidden": "19", + "media_file": "LAIN07.XA[18]", + "node_name": "Lda138", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "124", + "2": "135", + "3": "268" + } + }, + "2110": { + "SLPS_016_0x offset": "424624", + "green_text": "", + "image_table_indices": { + "1": "649", + "2": "771", + "3": "299" + }, + "is_hidden": "16", + "media_file": "LAIN07.XA[19]", + "node_name": "Lda139", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "326", + "upgrade_requirement": "3", + "words": { + "1": "204", + "2": "217", + "3": "12" + } + }, + "2112": { + "SLPS_016_0x offset": "415264", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "140", + "2": "341", + "3": "250" + }, + "is_hidden": "3", + "media_file": "LAIN02.XA[4]", + "node_name": "Cou037", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "70", + "2": "28", + "3": "191" + } + }, + "2113": { + "SLPS_016_0x offset": "417024", + "green_text": "", + "image_table_indices": { + "1": "568", + "2": "388", + "3": "440" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[1]", + "node_name": "Dia028", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "93", + "upgrade_requirement": "2", + "words": { + "1": "226", + "2": "207", + "3": "20" + } + }, + "2115": { + "SLPS_016_0x offset": "438744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "67", + "media_file": "LAIN13.XA[14]", + "node_name": "TaK163", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "398", + "2": "-1", + "3": "-1" + } + }, + "2117": { + "SLPS_016_0x offset": "424664", + "green_text": "", + "image_table_indices": { + "1": "663", + "2": "300", + "3": "772" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[20]", + "node_name": "Lda140", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "280", + "2": "16", + "3": "135" + } + }, + "2118": { + "SLPS_016_0x offset": "424704", + "green_text": "", + "image_table_indices": { + "1": "301", + "2": "650", + "3": "773" + }, + "is_hidden": "0", + "media_file": "LAIN07.XA[21]", + "node_name": "Lda141", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "328", + "upgrade_requirement": "3", + "words": { + "1": "135", + "2": "92", + "3": "105" + } + }, + "2119": { + "SLPS_016_0x offset": "424744", + "green_text": "", + "image_table_indices": { + "1": "231", + "2": "774", + "3": "652" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[22]", + "node_name": "Lda142", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "9", + "2": "107", + "3": "154" + } + }, + "2120": { + "SLPS_016_0x offset": "424784", + "green_text": "", + "image_table_indices": { + "1": "775", + "2": "303", + "3": "653" + }, + "is_hidden": "0", + "media_file": "LAIN07.XA[23]", + "node_name": "Lda143", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "330", + "upgrade_requirement": "3", + "words": { + "1": "288", + "2": "337", + "3": "340" + } + }, + "2121": { + "SLPS_016_0x offset": "435624", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN11.XA[31]", + "node_name": "TaK085", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "2", + "2": "-1", + "3": "-1" + } + }, + "2200": { + "SLPS_016_0x offset": "435584", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN11.XA[30]", + "node_name": "TaK084", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "92", + "2": "-1", + "3": "-1" + } + }, + "2201": { + "SLPS_016_0x offset": "438784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[15]", + "node_name": "TaK164", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "237", + "2": "-1", + "3": "-1" + } + }, + "2202": { + "SLPS_016_0x offset": "424824", + "green_text": "", + "image_table_indices": { + "1": "776", + "2": "654", + "3": "304" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[24]", + "node_name": "Lda144", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "307", + "2": "144", + "3": "222" + } + }, + "2203": { + "SLPS_016_0x offset": "424864", + "green_text": "", + "image_table_indices": { + "1": "656", + "2": "777", + "3": "305" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[25]", + "node_name": "Lda145", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "119", + "2": "195", + "3": "307" + } + }, + "2204": { + "SLPS_016_0x offset": "424904", + "green_text": "", + "image_table_indices": { + "1": "657", + "2": "306", + "3": "778" + }, + "is_hidden": "0", + "media_file": "LAIN07.XA[26]", + "node_name": "Lda146", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "333", + "upgrade_requirement": "3", + "words": { + "1": "43", + "2": "169", + "3": "2" + } + }, + "2205": { + "SLPS_016_0x offset": "435664", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN12.XA[0]", + "node_name": "TaK086", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "62", + "2": "-1", + "3": "-1" + } + }, + "2207": { + "SLPS_016_0x offset": "438824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN13.XA[16]", + "node_name": "TaK165", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "393", + "2": "-1", + "3": "-1" + } + }, + "2208": { + "SLPS_016_0x offset": "435704", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "19", + "media_file": "LAIN12.XA[1]", + "node_name": "TaK087", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "273", + "2": "-1", + "3": "-1" + } + }, + "2209": { + "SLPS_016_0x offset": "435744", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN12.XA[2]", + "node_name": "TaK088", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "360", + "2": "-1", + "3": "-1" + } + }, + "2210": { + "SLPS_016_0x offset": "438864", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "51", + "media_file": "LAIN13.XA[17]", + "node_name": "TaK166", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "390", + "2": "-1", + "3": "-1" + } + }, + "2211": { + "SLPS_016_0x offset": "424944", + "green_text": "", + "image_table_indices": { + "1": "307", + "2": "659", + "3": "779" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[27]", + "node_name": "Lda147", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "210", + "2": "278", + "3": "91" + } + }, + "2212": { + "SLPS_016_0x offset": "424984", + "green_text": "", + "image_table_indices": { + "1": "308", + "2": "780", + "3": "-1" + }, + "is_hidden": "0", + "media_file": "LAIN07.XA[28]", + "node_name": "Lda148", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "335", + "upgrade_requirement": "3", + "words": { + "1": "341", + "2": "285", + "3": "205" + } + }, + "2214": { + "SLPS_016_0x offset": "435824", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN12.XA[4]", + "node_name": "TaK090", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "50", + "2": "-1", + "3": "-1" + } + }, + "2215": { + "SLPS_016_0x offset": "438904", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "35", + "media_file": "LAIN13.XA[18]", + "node_name": "TaK167", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "341", + "2": "-1", + "3": "-1" + } + }, + "2216": { + "SLPS_016_0x offset": "435784", + "green_text": "", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "83", + "media_file": "LAIN12.XA[3]", + "node_name": "TaK089", + "protocol_lines": { + "1": "41", + "2": "41", + "3": "41", + "4": "41" + }, + "site": "A", + "type": "6", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "107", + "2": "-1", + "3": "-1" + } + }, + "2217": { + "SLPS_016_0x offset": "412464", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F038.STR", + "node_name": "Dc1024", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "63", + "2": "64", + "3": "5" + } + }, + "2218": { + "SLPS_016_0x offset": "430304", + "green_text": "TOUKO's DIARY", + "image_table_indices": { + "1": "369", + "2": "605", + "3": "126" + }, + "is_hidden": "3", + "media_file": "LAIN09.XA[10]", + "node_name": "Tda044", + "protocol_lines": { + "1": "39", + "2": "1", + "3": "40", + "4": "3" + }, + "site": "A", + "type": "2", + "unlocked_by": "-1", + "upgrade_requirement": "0", + "words": { + "1": "381", + "2": "404", + "3": "36" + } + }, + "2219": { + "SLPS_016_0x offset": "412624", + "green_text": "DATA of CLN01", + "image_table_indices": { + "1": "-1", + "2": "-1", + "3": "-1" + }, + "is_hidden": "3", + "media_file": "MOVIE\\F043.STR", + "node_name": "Dc1028", + "protocol_lines": { + "1": "0", + "2": "1", + "3": "2", + "4": "3" + }, + "site": "A", + "type": "4", + "unlocked_by": "-1", + "upgrade_requirement": "1", + "words": { + "1": "70", + "2": "71", + "3": "11" + } + }, + "2220": { + "SLPS_016_0x offset": "425024", + "green_text": "", + "image_table_indices": { + "1": "781", + "2": "309", + "3": "660" + }, + "is_hidden": "3", + "media_file": "LAIN07.XA[29]", + "node_name": "Lda149", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "-1", + "upgrade_requirement": "3", + "words": { + "1": "67", + "2": "253", + "3": "310" + } + }, + "2221": { + "SLPS_016_0x offset": "425064", + "green_text": "", + "image_table_indices": { + "1": "782", + "2": "662", + "3": "310" + }, + "is_hidden": "0", + "media_file": "LAIN07.XA[30]", + "node_name": "Lda150", + "protocol_lines": { + "1": "37", + "2": "21", + "3": "38", + "4": "35" + }, + "site": "A", + "type": "0", + "unlocked_by": "337", + "upgrade_requirement": "3", + "words": { + "1": "258", + "2": "83", + "3": "280" + } + }, + "2222": { + "SLPS_016_0x offset": "415304", + "green_text": "COUNSELING REC.", + "image_table_indices": { + "1": "35", + "2": "145", + "3": "251" + }, + "is_hidden": "3", + "media_file": "LAIN02.XA[5]", + "node_name": "Cou038", + "protocol_lines": { + "1": "7", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "3", + "unlocked_by": "-1", + "upgrade_requirement": "2", + "words": { + "1": "71", + "2": "192", + "3": "179" + } + }, + "2223": { + "SLPS_016_0x offset": "417064", + "green_text": "", + "image_table_indices": { + "1": "585", + "2": "441", + "3": "389" + }, + "is_hidden": "0", + "media_file": "LAIN03.XA[2]", + "node_name": "Dia029", + "protocol_lines": { + "1": "9", + "2": "1", + "3": "8", + "4": "3" + }, + "site": "A", + "type": "5", + "unlocked_by": "94", + "upgrade_requirement": "2", + "words": { + "1": "69", + "2": "64", + "3": "227" + } + }, + "dummy": { + "SLPS_016_0x offset": "", + "green_text": "", + "image_table_indices": { + "1": "", + "2": "", + "3": "" + }, + "is_hidden": "0", + "media_file": "", + "node_name": "", + "protocol_lines": { + "1": "", + "2": "", + "3": "", + "4": "" + }, + "site": "", + "type": "", + "unlocked_by": "", + "upgrade_requirement": "", + "words": { + "1": "", + "2": "", + "3": "" + } + } +} diff --git a/src/store.ts b/src/store.ts index 0d2c141..75cf517 100644 --- a/src/store.ts +++ b/src/store.ts @@ -114,7 +114,7 @@ type TextRendererState = { export const useTextRendererStore = create((set) => ({ // yellow text - yellowText: "Tda028", + yellowText: "Play", yellowTextPosY: 0.23, yellowTextPosX: -0.35, yellowTextOffsetXCoeff: 0,