<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="52">
  <CheatEntries>
    <CheatEntry>
      <ID>3103</ID>
      <Description>"Toggle Compact View"</Description>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not toggleCompactView then
    function toggleCompactView(sender, forceEnable)
        local isCompactMode = not (compactViewMenuItem.Caption == 'Compact View Mode')
        if forceEnable ~= nil then
            isCompactMode = not forceEnable
        end

        synchronize(function()
            compactViewMenuItem.Caption = isCompactMode and 'Compact View Mode' or 'Full View Mode'
            getMainForm().Splitter1.Visible = isCompactMode
            getMainForm().Panel4.Visible    = isCompactMode
            getMainForm().Panel5.Visible    = isCompactMode
        end)
    end
end

if not createCompactViewMenu then
    function createCompactViewMenu()
        if isCompactMenuCreated then return end

        synchronize(function()
            local mainMenu = getMainForm().Menu.Items
            compactViewMenuItem = createMenuItem(mainMenu)
            compactViewMenuItem.Caption = 'Compact View Mode'
            compactViewMenuItem.OnClick = toggleCompactView
            mainMenu.add(compactViewMenuItem)
        end)

        isCompactMenuCreated = true
    end
end

createCompactViewMenu()
toggleCompactView(nil, true)

[DISABLE]
{$lua}
if toggleCompactView then
    toggleCompactView(nil, false)
end
</AssemblerScript>
    </CheatEntry>
    <CheatEntry>
      <ID>2981</ID>
      <Description>"GWorld → Simple data"</Description>
      <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModuleUE then
  function AOBScanModuleUE(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end
registerLuaFunctionHighlight('AOBScanModuleUE')

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_13A179', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_13A179'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModuleUE(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_13A179')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>2982</ID>
          <Description>"base_all"</Description>
          <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_13A179</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>3077</ID>
              <Description>"OwningGameInstance ▸ GameWork"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>D38</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>3082</ID>
                  <Description>"cur.MONEY"</Description>
                  <ShowAsSigned>1</ShowAsSigned>
                  <VariableType>8 Bytes</VariableType>
                  <Address>+1E0</Address>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>3106</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>3108</ID>
                  <Description>"Chain (Native-C)"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>4 Bytes</VariableType>
                  <Address>+7DC</Address>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>2983</ID>
              <Description>"GameState ▸ PlayerArray ▸ [0] ▸ PawnPrivate ▸ AbilitySystemComponent"</Description>
              <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+1B0</Address>
              <Offsets>
                <Offset>0</Offset>
                <Offset>7E0</Offset>
                <Offset>340</Offset>
                <Offset>0</Offset>
                <Offset>2E0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>2984</ID>
                  <Description>"SpawnedAttributes [3 x ObjectProperty (8B)]"</Description>
                  <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+10A8</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>2985</ID>
                      <Description>"[2] CharacterAttributeSet_2147477184 (CharacterAttributeSet)"</Description>
                      <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+10</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>350</ID>
                          <Description>"**** Auto fill HP/Oxygen/Shield, if simple data available ****"</Description>
                          <Options moHideChildren="1"/>
                          <VariableType>Auto Assembler Script</VariableType>
                          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
if hpRefillTimerAob1 then
  hpRefillTimerAob1.destroy()
  hpRefillTimerAob1 = nil
end
-- ============================================================
-- 設定欄位說明
-- ============================================================
-- 【目標比對】三選一（決定這筆設定套用到哪些 record）：
--   desc      : 單一描述（完全相符；可命中多筆同名）
--   descList  : 描述清單，例如 {'baseValue','Amt.#1'}（完全相符）
--   descMatch : Lua pattern，凡描述 string.find 命中者全套用
--               注意 '.' 在 pattern 要寫成 '%.'，例：'^Amt%.#%d+$'
-- 【動作】
--   srcType   : 0=從 target+offset 讀  1=固定值  2=從另一個 record 讀
--   offset    : srcType=0 時 target.address+offset 為來源（0=自己）
--   value     : srcType=1 固定值 / srcType=2 來源 record 的 description
--   mult      : srcType=0 乘數，預設 1
--   srcType0Datatype : srcType=0 來源型別，預設同 target
--   threshold : 比較門檻（選填）。不設→用來源值當門檻；
--               有設→比較用 threshold、寫入仍用來源值（門檻/回填值分離）
--   writeMode : '&lt;'(預設) '&lt;=' '&gt;' '&gt;=' '==/=' '~=/!=/&lt;&gt;' '*'(無條件)
--   ranges    : 區間對應表（設了就忽略 srcType/value/threshold/writeMode）
--               { {min=1,max=5,set=10}, {min=11,max=25,set=30} }
--               找第一個 min&lt;=值&lt;=max 的區間，值≠set 才寫；區間勿重疊
-- 【過場防護】（選填，強烈建議 UE 元件欄位都加）
--   validMin / validMax : 目前值超出此範圍 → 視為解到別的物件，不寫
--                         （settle 閘門與此兩項已全域生效）
-- ============================================================
-- 範例：
--   { desc = 'HP', srcType = 0, offset = 0x10, mult = 10 },
--   { desc = 'HP', srcType = 1, value = 10, writeMode = '&lt;' },
--   { descMatch = '^Amt%.#%d+$', ranges = {
--       { min=1, max=5, set=10 }, { min=11, max=25, set=30 } } },
--   { descList = {'baseValue'}, srcType = 1, value = 10, writeMode = '&lt;' },
-- ============================================================
-- ============================================================
-- 設定範例集（複製到下方 recordConfigs 內使用）
-- ============================================================
-- -
-- [補滿型] HP/MP/Sta 補滿（max 在 +0x10，乘 10 倍寫回 current）
--   { desc = 'HP', srcType = 0, offset = 0x10, mult = 10 },
-- -
-- [補滿型] 不乘倍數，直接 current = max
--   { desc = 'HP', srcType = 0, offset = 0x10 },
-- -
-- [保底型] target 自己 &lt; 某值就拉到該值（門檻=回填值，最單純）
--   { desc = 'HP', srcType = 1, value = 10, writeMode = '&lt;' },
--   { desc = 'Cur. HP 1', srcType = 1, value = 10, writeMode = '&lt;' },
-- -
-- [保底型·分離] HP &lt; 100 就直接補到 9999（門檻100、回填9999）
--   { desc = 'HP', srcType = 1, value = 9999, threshold = 100, writeMode = '&lt;' },
-- -
-- [緊急補滿] HP &lt; 10 才補到 max*10，平時讓它自然消耗
--   { desc = 'HP', srcType = 0, offset = 0x10, mult = 10,
--     threshold = 10, writeMode = '&lt;' },
-- -
-- [上限型] 等級超過 99 拉回 99
--   { desc = 'Level', srcType = 1, value = 99, writeMode = '&gt;' },
-- -
-- [上限型] 物品數量超過 99 拉回 99
--   { desc = 'Potion', srcType = 1, value = 99, writeMode = '&gt;' },
-- -
-- [凍結型] 金錢不等於 99999999 就寫回（防遊戲扣款也防你誤花）
--   { desc = 'Gold', srcType = 1, value = 99999999, writeMode = '~=' },
-- -
-- [凍結型] 技能 CD 不等於 0 就清零
--   { desc = 'SkillCD', srcType = 1, value = 0, writeMode = '~=' },
-- -
-- [強制型] 無條件每 tick 把無敵時間設成 9999
--   { desc = 'InvincibleTimer', srcType = 1, value = 9999, writeMode = '*' },
-- -
-- [鏡像型] CurHP 和 MaxHP 不一致就同步（CurHP = MaxHP）
--   { desc = 'CurHP', srcType = 2, value = 'MaxHP', writeMode = '~=' },
-- -
-- [鏡像型] 把另一個欄位的值乘 2 寫過來（透過 srcType=2，但無倍數）
--   { desc = 'AttackDisplay', srcType = 2, value = 'AttackBase' },
--   注意：srcType=2 沒有 mult 參數，需乘倍數請用 srcType=0
-- -
-- [指定型別] target 是 vtQword，但 max 在 +0x20 是 vtDword
--   { desc = 'Mana', srcType = 0, offset = 0x20,
--     srcType0Datatype = vtDword, mult = 10 },
-- -
-- [Float] 移動速度倍率：current &lt; 5.0 時拉到 5.0
--   { desc = 'MoveSpeed', srcType = 1, value = 5.0, writeMode = '&lt;' },
-- -
-- [Byte] 1 byte 的 buff 旗標固定為 1
--   { desc = 'BuffFlag', srcType = 1, value = 1, writeMode = '~=' },
-- -
-- [區間偵測型] 同一格可能是炸彈或弓箭，靠數值判斷後補到各自上限
--   { desc = 'Amt.#1', ranges = {
--       { min = 1,  max = 5,  set = 10 },
--       { min = 11, max = 25, set = 30 },
--   } },
-- -
-- 提醒：threshold 是拿來和 curVal 直接比較的原始數值，如果該 record 是
-- vtSingle/vtDouble（例如移速倍率），記得 threshold 也寫成浮點數（threshold = 5.0）。
-- -
-- ============================================================
local DEBUG = false        -- true：Enable 時印出每筆 config 命中幾個 record

-- ============================================================
-- 不掃描清單（可改）：這些描述「本身 + 其所有 sub node」一律跳過
-- ============================================================
local EXCLUDE_DESCS = {
  'GWorld → more game data',
  'Require UE5CEDumper DLL proxy installed',
}

-- ============================================================
-- 過場錨點（可改）：監看「世界指標」= [ANCHOR.base]（過場會變的那顆）。
--   直接用 readQword 從符號讀，不吃 CE 指標更新延遲；值一變 = 過場開始，
--   全域暫停寫入，穩定滿 ANCHOR_SETTLE_MS 後重掃一次再恢復。
--   base 填 GWorld 指標 slot 符號；或改用 { desc='base_all' } 監看其解出位址。
--   設成 nil 可關閉此機制。
-- ============================================================
local ANCHOR = { base = 'gworld_addr_13A179' }
local ANCHOR_SETTLE_MS = 6000

-- 選填手動全域閘門：值 == equals 時才允許寫入（過場/讀取旗標）
local GATE = nil

-- ============================================================
-- 設定清單
-- ============================================================
local recordConfigs = {
  -- { desc = 'HP.BaseValue',     srcType = 1, value = 20, threshold = 10, writeMode = '&lt;' },
  -- { desc = 'HP.CurrentValue',     srcType = 1, value = 20, threshold = 10, writeMode = '&lt;' },
  -- { desc = 'OX.BaseValue',     srcType = 1, value = 5,  writeMode = '&lt;', validMin = 0, validMax = 999 },
  -- { desc = 'OX.CurrentValue',  srcType = 1, value = 5,  writeMode = '&lt;', validMin = 0, validMax = 999 },
  -- { desc = 'SH.BaseValue',     srcType = 1, value = 10, threshold = 5, writeMode = '&lt;' },
  -- { desc = 'SH.CurrentValue',     srcType = 1, value = 10, threshold = 5, writeMode = '&lt;' },
  -- { desc = 'Chain (Native-C)', srcType = 1, value = 18, writeMode = '&lt;', validMin = 0, validMax = 9999 },
  { desc = 'HP.BaseValue', ranges = { { min = 1,  max = 12,  set = 20 }, } },
  { desc = 'HP.CurrentValue', ranges = { { min = 1,  max = 12,  set = 20 }, } },
  { desc = 'OX.BaseValue', ranges = { { min = 1,  max = 4,  set = 5 }, } },
  { desc = 'OX.CurrentValue', ranges = { { min = 1,  max = 4,  set = 5 }, } },
  { desc = 'SH.BaseValue', ranges = { { min = 1,  max = 4,  set = 10 }, } },
  { desc = 'SH.CurrentValue', ranges = { { min = 1,  max = 4,  set = 10 }, } },
  { desc = 'Chain (Native-C)', ranges = { { min = 1,  max = 17,  set = 18 }, } },
  { desc = 'cur.MONEY', ranges = { { min = 1,  max = 19999,  set = 40000 }, } },
  --{ desc = 'cur.MONEY', srcType = 1, value = 30000, writeMode = '&lt;', validMin = 0, validMax = 999999 },
  { descMatch = '^Amt%.#%d+$', validMin = 0, validMax = 99999, ranges = {
      { min = 8,   max = 9,   set = 20 },
      { min = 21,   max = 29,   set = 60 },
      { min = 101,  max = 199,  set = 500 },
      { min = 1001, max = 4999, set = 10000 },
  } },
  { descMatch = '^Support%.#%d+$', validMin = 0.0, validMax = 100.0, ranges = {
      { min = 1.0,   max = 80.0,   set = 100.0 },
  } },
}

-- ============================================================
-- read/write 函式
-- ============================================================
local function readByteValue(addr) return readBytes(addr, 1, false) end
local function writeByteValue(addr, v) writeBytes(addr, v) end
local function getRw(vt)
  if vt == vtByte   then return readByteValue, writeByteValue end
  if vt == vtWord   then return readSmallInteger, writeSmallInteger end
  if vt == vtDword  then return readInteger, writeInteger end
  if vt == vtQword  then return readQword, writeQword end
  if vt == vtSingle then return readFloat, writeFloat end
  if vt == vtDouble then return readDouble, writeDouble end
  return nil, nil
end

-- ============================================================
-- writeMode 判斷
-- ============================================================
local function shouldWrite(curVal, srcVal, mode)
  mode = mode or '&lt;'
  if mode == '*'  then return true end
  if mode == '&lt;'  then return curVal &lt;  srcVal end
  if mode == '&lt;=' then return curVal &lt;= srcVal end
  if mode == '&gt;'  then return curVal &gt;  srcVal end
  if mode == '&gt;=' then return curVal &gt;= srcVal end
  if mode == '==' or mode == '='  then return curVal == srcVal end
  if mode == '~=' or mode == '!=' or mode == '&lt;&gt;' then return curVal ~= srcVal end
  return false
end

-- ============================================================
-- 解析單一 MemoryRecord（含可讀性檢查，?????/不可讀 → nil，絕不硬寫）
-- ============================================================
local function resolveMR(mr)
  if mr == nil then return nil end
  local addr = mr.CurrentAddress
  if addr == nil then return nil end
  local resolved = getAddress(addr)
  if resolved == nil or resolved == 0 then return nil end
  if readBytes(resolved, 1, false) == nil then return nil end
  local reader, writer = getRw(mr.Type)
  if reader == nil then return nil end
  return { mr = mr, resolved = resolved, vt = mr.Type, reader = reader, writer = writer }
end
local function resolveRecord(al, desc)
  return resolveMR(al.getMemoryRecordByDescription(desc))
end

-- ============================================================
-- 每葉位址防護（錨點放行後，收尾末端尚未穩定的葉節點）
-- ============================================================
local SETTLE_MS = 1000     -- 葉位址變動後要連續穩定這麼久才允許寫入
local lastAddr = {}
local stableSince = {}
local function addrSettled(mr, resolved)
  local id = mr.ID
  local now = getTickCount()
  if lastAddr[id] ~= resolved then
    lastAddr[id] = resolved
    stableSince[id] = now
    return false
  end
  return (now - (stableSince[id] or now)) &gt;= SETTLE_MS
end
local function valuePlausible(cfg, v)
  if cfg.validMin ~= nil and v &lt; cfg.validMin then return false end
  if cfg.validMax ~= nil and v &gt; cfg.validMax then return false end
  return true
end

-- ============================================================
-- 取得 source value
-- ============================================================
local function getSourceValue(cfg, target, al)
  local st = cfg.srcType
  if st == 0 then
    if cfg.offset == nil then return nil end
    local srcReader = getRw(cfg.srcType0Datatype or target.vt)
    if srcReader == nil then return nil end
    local srcVal = srcReader(target.resolved + cfg.offset)
    if srcVal == nil then return nil end
    return srcVal * (cfg.mult or 1)
  elseif st == 1 then
    return cfg.value
  elseif st == 2 then
    if cfg.value == nil then return nil end
    local srcRec = resolveRecord(al, cfg.value)
    if srcRec == nil then return nil end
    return srcRec.reader(srcRec.resolved)
  end
  return nil
end

-- ============================================================
-- ranges 模式（含過場防護）
-- ============================================================
local function applyRanges(cfg, target)
  if not addrSettled(target.mr, target.resolved) then return end
  local curVal = target.reader(target.resolved)
  if curVal == nil then return end
  if not valuePlausible(cfg, curVal) then return end
  for _, r in ipairs(cfg.ranges) do
    if r.min and r.max and r.set
       and curVal &gt;= r.min and curVal &lt;= r.max then
      if curVal ~= r.set then target.writer(target.resolved, r.set) end
      return
    end
  end
end

-- ============================================================
-- 目標比對
-- ============================================================
local function descMatchesCfg(desc, cfg)
  if cfg.descMatch then
    return string.find(desc, cfg.descMatch) ~= nil
  elseif cfg.descList then
    for _, d in ipairs(cfg.descList) do
      if desc == d then return true end
    end
    return false
  elseif cfg.desc then
    return desc == cfg.desc
  end
  return false
end

-- ============================================================
-- 目標快取（定期重建 + 排除子樹）
-- ============================================================
local RESCAN_MS = 6000
local targetCache = {}
local lastScan = 0
local function rebuildCache()
  local al = getAddressList()
  local excludeRoot = {}
  for _, d in ipairs(EXCLUDE_DESCS) do excludeRoot[d] = true end
  local exMemo = {}
  local function isExcluded(mr)
    if mr == nil then return false end
    local id = mr.ID
    local hit = exMemo[id]
    if hit ~= nil then return hit end
    local r
    local d = mr.Description
    if d ~= nil and excludeRoot[d] then r = true
    else r = isExcluded(mr.Parent) end
    exMemo[id] = r
    return r
  end
  for ci = 1, #recordConfigs do targetCache[ci] = {} end
  local n = al.Count
  for i = 0, n - 1 do
    local mr = al.getMemoryRecord(i)
    if mr ~= nil and not isExcluded(mr) then
      local d = mr.Description
      if d ~= nil then
        for ci, cfg in ipairs(recordConfigs) do
          if descMatchesCfg(d, cfg) then
            local t = targetCache[ci]; t[#t + 1] = mr
          end
        end
      end
    end
  end
  if DEBUG then
    for ci, cfg in ipairs(recordConfigs) do
      local key = cfg.descMatch or cfg.desc
        or (cfg.descList and table.concat(cfg.descList, ',')) or '?'
      print(string.format('[cfg %d] "%s" -&gt; %d', ci, tostring(key), #targetCache[ci]))
    end
  end
end
pcall(rebuildCache)
lastScan = getTickCount()

-- ============================================================
-- 過場錨點：偵測「世界指標」變動 → 暫停，穩定夠久 → 重掃放行
-- ============================================================
local lastAnchorKey = nil
local anchorChangedAt = 0
local inTransition = false
local function readAnchor(al)
  if ANCHOR == nil then return nil end
  if ANCHOR.base ~= nil then
    local ok, baseAddr = pcall(getAddress, ANCHOR.base)   -- 符號 → slot 位址（靜態）
    if not ok or baseAddr == nil or baseAddr == 0 then return nil end
    local wp = readQword(baseAddr)                         -- [slot] = 當前世界指標（會變）
    if wp == nil or wp == 0 then return nil end
    return wp
  else
    local a = resolveRecord(al, ANCHOR.desc)
    if a == nil then return nil end
    return a.resolved                                       -- base_all 的解出位址
  end
end
local function anchorReady(al)
  if ANCHOR == nil then return true end
  local now = getTickCount()
  local key = readAnchor(al)
  if key == nil then inTransition = true; return false end  -- 讀不到/null → 過場中
  if key ~= lastAnchorKey then
    lastAnchorKey = key
    anchorChangedAt = now
    inTransition = true
    return false
  end
  if (now - anchorChangedAt) &lt; ANCHOR_SETTLE_MS then return false end
  if inTransition then
    pcall(rebuildCache); lastScan = now                     -- 過場結束 → 重掃一次再放行
    inTransition = false
  end
  return true
end
-- 初始化錨點（避免 enable 後白等一輪）
do
  local al = getAddressList()
  local k = readAnchor(al)
  if k ~= nil then
    lastAnchorKey = k
    anchorChangedAt = getTickCount() - ANCHOR_SETTLE_MS
  end
end

-- ============================================================
-- Timer
-- ============================================================
hpRefillTimerAob1 = createTimer(getMainForm(), false)
hpRefillTimerAob1.Interval = 500
hpRefillTimerAob1.OnTimer = function(t)
  local al = getAddressList()

  -- ★過場錨點：世界指標變動 → 整輪暫停（並於恢復時重掃）
  if not anchorReady(al) then return end

  -- 穩定狀態下的定期重掃（自我修復結構變動）
  local now = getTickCount()
  if now - lastScan &gt;= RESCAN_MS then
    pcall(rebuildCache); lastScan = now
  end

  -- 選填手動閘門
  if GATE ~= nil then
    local g = resolveRecord(al, GATE.desc)
    if g == nil then return end
    local gv = g.reader(g.resolved)
    if gv == nil or gv ~= GATE.equals then return end
  end

  for ci, cfg in ipairs(recordConfigs) do
    local recs = targetCache[ci]
    if recs ~= nil then
      for _, mr in ipairs(recs) do
        pcall(function()
          local target = resolveMR(mr)
          if target == nil then return end
          if cfg.ranges ~= nil then
            applyRanges(cfg, target)
            return
          end
          if not addrSettled(target.mr, target.resolved) then return end
          local srcVal = getSourceValue(cfg, target, al)
          if srcVal == nil then return end
          local curVal = target.reader(target.resolved)
          if curVal == nil then return end
          if not valuePlausible(cfg, curVal) then return end
          local cmpVal = cfg.threshold
          if cmpVal == nil then cmpVal = srcVal end
          if shouldWrite(curVal, cmpVal, cfg.writeMode) then
            target.writer(target.resolved, srcVal)
          end
        end)
      end
    end
  end
end
hpRefillTimerAob1.Enabled = true
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
if hpRefillTimerAob1 then
  hpRefillTimerAob1.Enabled = false
  hpRefillTimerAob1.destroy()
  hpRefillTimerAob1 = nil
end
{$asm}
</AssemblerScript>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>3121</ID>
                              <Description>"Also keep values in Amt.#?? / Support.#?"</Description>
                              <Color>8000FF</Color>
                              <GroupHeader>1</GroupHeader>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3178</ID>
                              <Description>"Disable before zoning"</Description>
                              <Color>8000FF</Color>
                              <GroupHeader>1</GroupHeader>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3180</ID>
                              <Description>"Values writing audo-pause 6 secs after zoning"</Description>
                              <Color>8000FF</Color>
                              <GroupHeader>1</GroupHeader>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2986</ID>
                          <Description>"HealthPoint (GameplayAttributeData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2987</ID>
                              <Description>"HP.BaseValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2988</ID>
                              <Description>"HP.CurrentValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+C</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>3034</ID>
                          <Description>"DivingOxygenPoint (GameplayAttributeData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+130</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>3035</ID>
                              <Description>"OX.BaseValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3036</ID>
                              <Description>"OX.CurrentValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+C</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>3072</ID>
                          <Description>"GuardEndurance (GameplayAttributeData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+200</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>3073</ID>
                              <Description>"SH.BaseValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3074</ID>
                              <Description>"SH.CurrentValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+C</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>3135</ID>
              <Description>"GameState ▸ PlayerArray ▸ [0] ▸ PawnPrivate"</Description>
              <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+1B0</Address>
              <Offsets>
                <Offset>0</Offset>
                <Offset>340</Offset>
                <Offset>0</Offset>
                <Offset>2E0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>3136</ID>
                  <Description>"SupportActionGauge [7 x FloatProperty (4B)]"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+D78</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>3137</ID>
                      <Description>"Support.#0"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3138</ID>
                      <Description>"Support.#1"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3139</ID>
                      <Description>"Support.#2"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3140</ID>
                      <Description>"Support.#3"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3141</ID>
                      <Description>"Support.#4"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+10</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3142</ID>
                      <Description>"Support.#5"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+14</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3143</ID>
                      <Description>"Support.#6"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+18</Address>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
                <CheatEntry>
                  <ID>3164</ID>
                  <Description>"BuffItemEffects [2 x CustomAbilityEffectDuration]"</Description>
                  <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+D48</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>3165</ID>
                      <Description>"[0]"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>3176</ID>
                          <Description>"Elap.1?"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>3174</ID>
                      <Description>"[1]"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+24</Address>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>3177</ID>
                          <Description>"Elap.2?"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3132</ID>
      <Description>"↓Enable amount monitor below (auto-reactive, Amt.#1 must &gt;0)↓"</Description>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if rearmWatchTimer then
  rearmWatchTimer.Enabled = false
  rearmWatchTimer.destroy()
  rearmWatchTimer = nil
end

local DEBUG = false

-- ============================================================
-- CONFIG
-- ============================================================
-- 每組 pair：
--   a = 監看來源 record 描述（A，例：Amt.#1 = magic stone piece）
--   b = 要 disable/enable 的「父項 activator」描述（例：Get magic stone piece）
--   detect            = 失效判定（range / readable / sentinel / custom）
--   requireSeenValid  = true(預設)：A 先有效過一次才會 arm（擋 lazy 值的啟動初期）
--   rearmOncePerValid = true(預設)：re-arm 後重置 seen → 一個有效週期只 kick 一次
--                       （A 是 lazy/觸發後才出現的值，務必 true，否則會無限 toggle）
--   bReady            = B 就緒判定（'always'(建議) / 'addr' / function）
--   minRearmGapMs     = 兩次 re-arm 最短間隔（毫秒；省略用全域預設）
local PAIRS = {
  { a = 'Amt.#1', b = 'Get magic stone piece, arrow amount',
    detect            = { mode = 'range', min = 1, max = 9999999 },
    requireSeenValid  = true,
    rearmOncePerValid = true,
    bReady            = 'always' },
}

local REARM_SEQUENCE = {
  { action = 'disable', wait = 500 },
  { action = 'enable',  wait = 500 },
  { action = 'enable',  wait = 0   },
}

local CHECK_INTERVAL_MS = 200
local SETTLE_MS         = 1000
local TICK_MS           = 200
local RESCAN_MS         = 5000
local BYPASS_LOG_MS     = 2000
local MIN_REARM_GAP_MS  = 3000   -- 全域 re-arm 冷卻（保險，防止猛 toggle）

-- ============================================================
-- 讀取函式
-- ============================================================
local function getReader(vt)
  if vt == vtByte   then return function(a) return readBytes(a, 1, false) end end
  if vt == vtWord   then return readSmallInteger end
  if vt == vtDword  then return readInteger end
  if vt == vtQword  then return readQword end
  if vt == vtSingle then return readFloat end
  if vt == vtDouble then return readDouble end
  return nil
end

local function rawRead(mr)
  if mr == nil then return nil, 'no-mr' end
  local s
  local ok = pcall(function() s = mr.Value end)
  if not ok or s == nil then return nil, 'value-fail' end
  local v = tonumber(s)
  if v == nil then return nil, 'value=' .. tostring(s) end  -- "??" → 解不出/不可讀
  return v, nil
end

local function isInvalid(detect, value, readErr)
  local mode = detect.mode or 'range'
  if mode == 'readable' then
    return value == nil
  elseif mode == 'range' then
    if value == nil then return true end
    if detect.min and value &lt; detect.min then return true end
    if detect.max and value &gt; detect.max then return true end
    return false
  elseif mode == 'sentinel' then
    if value == nil then return detect.brokenIfUnreadable ~= false end
    for _, sv in ipairs(detect.sentinels or {}) do
      if value == sv then return true end
    end
    return false
  elseif mode == 'custom' then
    local ok, r = pcall(detect.fn, value, readErr)
    return ok and r == true
  end
  return false
end

local function setB(bMR, active)
  if bMR == nil then return end
  pcall(function() bMR.Active = active end)
end

-- ============================================================
-- B 就緒判定
-- ============================================================
local function defaultBReady(bMR)
  if bMR == nil then return false end
  local addr = bMR.CurrentAddress
  if addr == nil then return false end
  local resolved
  local ok = pcall(function() resolved = getAddress(addr) end)
  if not ok or resolved == nil or resolved == 0 then return false end
  return true
end

local function bReadyResolver(p)
  local v = p.bReady
  if v == 'always' then return function(bMR) return bMR ~= nil end end
  if v == 'addr' or v == nil then return defaultBReady end
  if type(v) == 'function' then return v end
  return defaultBReady
end

local function normDetect(p)
  if p.detect then return p.detect end
  return { mode = 'range', min = p.min, max = p.max }
end

-- ============================================================
-- 快取
-- ============================================================
local cache = {}
local function rebuildCache()
  local al = getAddressList()
  for i, p in ipairs(PAIRS) do
    cache[i] = {
      aMR         = al.getMemoryRecordByDescription(p.a),
      bMR         = al.getMemoryRecordByDescription(p.b),
      detect      = normDetect(p),
      bReady      = bReadyResolver(p),
      requireSeen = (p.requireSeenValid ~= false),
      rearmOnce   = (p.rearmOncePerValid ~= false),
      minGap      = p.minRearmGapMs or MIN_REARM_GAP_MS,
    }
  end
end

local pst = {}
for i = 1, #PAIRS do
  pst[i] = { mode = 'idle', step = 0, nextTime = 0, resumeAt = 0,
             seen = false, lastRearm = 0, lastBypassLog = 0 }
end

pcall(rebuildCache)
if DEBUG then
  for i, p in ipairs(PAIRS) do
    local c = cache[i]
    print(('[init pair %d] aMR=%s  bMR=%s'):format(i,
      c.aMR and 'OK' or ('NOT FOUND &lt;'..p.a..'&gt;'),
      c.bMR and 'OK' or ('NOT FOUND &lt;'..p.b..'&gt;')))
  end
end
local now0      = getTickCount()
local lastScan  = now0
local lastCheck = 0

-- ============================================================
-- Timer
-- ============================================================
rearmWatchTimer = createTimer(getMainForm(), false)
rearmWatchTimer.Interval = TICK_MS
rearmWatchTimer.OnTimer = function(t)
  local now = getTickCount()

  if now - lastScan &gt;= RESCAN_MS then
    pcall(rebuildCache)
    lastScan = now
  end

  -- (1) 推進 re-arm 序列 / settle
  for i = 1, #PAIRS do
    local s = pst[i]
    local c = cache[i]
    if c then
      if s.mode == 'seq' and now &gt;= s.nextTime then
        local def = REARM_SEQUENCE[s.step]
        if def then
          if     def.action == 'disable' then setB(c.bMR, false)
          elseif def.action == 'enable'  then setB(c.bMR, true)  end
          if DEBUG then
            print(('[pair %d] step %d/%d: %s'):format(i, s.step, #REARM_SEQUENCE, def.action))
          end
          s.nextTime = now + (def.wait or 0)
          s.step = s.step + 1
          if s.step &gt; #REARM_SEQUENCE then
            s.mode = 'settle'; s.resumeAt = now + SETTLE_MS
          end
        else
          s.mode = 'settle'; s.resumeAt = now + SETTLE_MS
        end
      elseif s.mode == 'settle' and now &gt;= s.resumeAt then
        s.mode = 'idle'
      end
    end
  end

  -- (2) 偵測 A（節流到 CHECK_INTERVAL_MS）
  if now - lastCheck &gt;= CHECK_INTERVAL_MS then
    lastCheck = now
    for i = 1, #PAIRS do
      local s = pst[i]
      local c = cache[i]
      if c and s.mode == 'idle' then
        local v, err = rawRead(c.aMR)
        local invalid = isInvalid(c.detect, v, err)

        if not invalid then
          if not s.seen then
            s.seen = true
            if DEBUG then print(('[pair %d] A "%s" 有效 → armed'):format(i, PAIRS[i].a)) end
          end
        else
          local gateSeen = (not c.requireSeen) or s.seen
          local cooling  = (now - s.lastRearm) &lt; c.minGap
          if gateSeen and c.bReady(c.bMR) and not cooling then
            s.mode = 'seq'; s.step = 1; s.nextTime = now
            s.lastRearm = now
            if c.rearmOnce then s.seen = false end   -- 重置：等 A 重新有效才會再 arm
            if DEBUG then
              print(('[pair %d] A "%s" 失效(v=%s,err=%s) → re-arm B "%s"')
                :format(i, PAIRS[i].a, tostring(v), tostring(err), PAIRS[i].b))
            end
          else
            if DEBUG and (now - s.lastBypassLog &gt;= BYPASS_LOG_MS) then
              s.lastBypassLog = now
              local why = (not gateSeen) and 'A尚未有效過(lazy未觸發)'
                       or cooling and '冷卻中'
                       or 'B未就緒'
              print(('[pair %d] A bypass(%s) v=%s err=%s'):format(i, why, tostring(v), tostring(err)))
            end
          end
        end
      end
    end
  end
end
rearmWatchTimer.Enabled = true
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
if rearmWatchTimer then
  rearmWatchTimer.Enabled = false
  rearmWatchTimer.destroy()
  rearmWatchTimer = nil
end
{$asm}

</AssemblerScript>
    </CheatEntry>
    <CheatEntry>
      <ID>3083</ID>
      <Description>"Get magic stone piece, arrow amount"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/06/20
}

[ENABLE]

aobscanmodule(INJECT_GET_MSTONE_PIECE,$process,75 ?? 03 ?? 08 ?? 83 ?? 10 ?? 3B ?? 75 ??)
// raw AOB: 75 ?? 48 8B 03 48 8B CB 48 8B 5C 24 30 48 83 C4 20 5F 48 FF A0 08 04 00 00 48 8B 93 E8 0C 00 00 33 C0 4C 63 83 F0 0C 00 00 49 C1 E0 04 4C 03 C2 49 3B D0 74 ?? 48 8B 0F 48 39 0A 75 ?? 03 42 08 48 83 C2 10 49 3B D0 75 ?? 48 8B 5C 24 30 48 83 C4 20 5F C3 CC CC 48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 40 48 8B DA 33 D2 48 89 13
// injection point AOB: 75 ?? 03 ?? 08 ?? 83 ?? 10 ?? 3B ?? 75 ?? ?? 8B ?? 24 ?? 48 83 C4 20 ?? C3 CC CC ?? 89 ?? 24 ?? ?? 89 ?? 24 ?? ?? 48 83 EC 40 ?? 8B ?? 33 ?? ?? 89
alloc(newmem,$1000)
alloc(ptrList_arr_INJECT_GET_MSTONE_PIECE_548700,$A0)

alloc(INJECT_GET_MSTONE_PIECEo, $E)

label(code)
label(return)
label(ptrList_count_INJECT_GET_MSTONE_PIECE_548700)

INJECT_GET_MSTONE_PIECEo:
  readmem(INJECT_GET_MSTONE_PIECE, $E)

newmem:

code:
  // jne "Elliot-Win64-Shipping.exe"+4F8FA5A
  // reassemble(INJECT_GET_MSTONE_PIECE)
  jne short lab_4F8FA5A

  // **** Begin Auto script: AddressCapture
  // mode=List, capacity=10
  pushfq
  push rax
  push rbx
  // Address Capture List
  mov rax, ptrList_arr_INJECT_GET_MSTONE_PIECE_548700
  xor ebx, ebx
dedup_loop_548700:
  cmp ebx, [ptrList_count_INJECT_GET_MSTONE_PIECE_548700]
  jge store_new_548700
  cmp [rax+rbx*8], rdx
  je skip_store_548700
  inc ebx
  jmp dedup_loop_548700
store_new_548700:
  cmp ebx, #20
  jge skip_store_548700
  mov [rax+rbx*8], rdx
  inc dword ptr [ptrList_count_INJECT_GET_MSTONE_PIECE_548700]
skip_store_548700:
  pop rbx
  pop rax
  popfq
  // **** End Auto script: AddressCapture


  // add eax,[rdx+08]
  reassemble(INJECT_GET_MSTONE_PIECE+2)
  // add rdx,10 ("Elliot-Win64-Shipping.exe"+4F8FA5A)
lab_4F8FA5A:
  reassemble(INJECT_GET_MSTONE_PIECE+5)
  // cmp rdx,r8
  reassemble(INJECT_GET_MSTONE_PIECE+9)
  // jne "Elliot-Win64-Shipping.exe"+4F8FA52
  reassemble(INJECT_GET_MSTONE_PIECE+C)
  jmp far return
  align 10 cc
  ptrList_count_INJECT_GET_MSTONE_PIECE_548700:
  dd 0

INJECT_GET_MSTONE_PIECE:
  jmp far newmem
return:
registersymbol(INJECT_GET_MSTONE_PIECE INJECT_GET_MSTONE_PIECEo)
registersymbol(ptrList_arr_INJECT_GET_MSTONE_PIECE_548700 ptrList_count_INJECT_GET_MSTONE_PIECE_548700)
[DISABLE]

INJECT_GET_MSTONE_PIECE:
  readmem(INJECT_GET_MSTONE_PIECEo, $E)

unregistersymbol(INJECT_GET_MSTONE_PIECE INJECT_GET_MSTONE_PIECEo)
unregistersymbol(ptrList_arr_INJECT_GET_MSTONE_PIECE_548700 ptrList_count_INJECT_GET_MSTONE_PIECE_548700)
dealloc(newmem)
dealloc(INJECT_GET_MSTONE_PIECEo)

{
// ORIGINAL CODE - INJECTION POINT: "Elliot-Win64-Shipping.exe"+4F8FA55

"Elliot-Win64-Shipping.exe"+4F8FA00: 48 89 5C 24 08                     - mov [rsp+08],rbx
"Elliot-Win64-Shipping.exe"+4F8FA05: 57                                 - push rdi
"Elliot-Win64-Shipping.exe"+4F8FA06: 48 83 EC 20                        - sub rsp,20
"Elliot-Win64-Shipping.exe"+4F8FA0A: 48 8B D9                           - mov rbx,rcx
"Elliot-Win64-Shipping.exe"+4F8FA0D: 48 8B FA                           - mov rdi,rdx
"Elliot-Win64-Shipping.exe"+4F8FA10: 48 8B CA                           - mov rcx,rdx
"Elliot-Win64-Shipping.exe"+4F8FA13: E8 58 D5 F6 FF                     - call "Elliot-Win64-Shipping.exe"+4EFCF70
"Elliot-Win64-Shipping.exe"+4F8FA18: 3C 01                              - cmp al,01
"Elliot-Win64-Shipping.exe"+4F8FA1A: 75 17                              - jne "Elliot-Win64-Shipping.exe"+4F8FA33
"Elliot-Win64-Shipping.exe"+4F8FA1C: 48 8B 03                           - mov rax,[rbx]
"Elliot-Win64-Shipping.exe"+4F8FA1F: 48 8B CB                           - mov rcx,rbx
"Elliot-Win64-Shipping.exe"+4F8FA22: 48 8B 5C 24 30                     - mov rbx,[rsp+30]
"Elliot-Win64-Shipping.exe"+4F8FA27: 48 83 C4 20                        - add rsp,20
"Elliot-Win64-Shipping.exe"+4F8FA2B: 5F                                 - pop rdi
"Elliot-Win64-Shipping.exe"+4F8FA2C: 48 FF A0 08 04 00 00               - jmp qword ptr [rax+00000408]
"Elliot-Win64-Shipping.exe"+4F8FA33: 48 8B 93 E8 0C 00 00               - mov rdx,[rbx+00000CE8]
"Elliot-Win64-Shipping.exe"+4F8FA3A: 33 C0                              - xor eax,eax
"Elliot-Win64-Shipping.exe"+4F8FA3C: 4C 63 83 F0 0C 00 00               - movsxd  r8,dword ptr [rbx+00000CF0]
"Elliot-Win64-Shipping.exe"+4F8FA43: 49 C1 E0 04                        - shl r8,04
"Elliot-Win64-Shipping.exe"+4F8FA47: 4C 03 C2                           - add r8,rdx
"Elliot-Win64-Shipping.exe"+4F8FA4A: 49 3B D0                           - cmp rdx,r8
"Elliot-Win64-Shipping.exe"+4F8FA4D: 74 14                              - je "Elliot-Win64-Shipping.exe"+4F8FA63
"Elliot-Win64-Shipping.exe"+4F8FA4F: 48 8B 0F                           - mov rcx,[rdi]
"Elliot-Win64-Shipping.exe"+4F8FA52: 48 39 0A                           - cmp [rdx],rcx
// ---------- INJECTING HERE ----------
"Elliot-Win64-Shipping.exe"+4F8FA55: 75 03                              - jne "Elliot-Win64-Shipping.exe"+4F8FA5A
// ---------- DONE INJECTING  ----------
"Elliot-Win64-Shipping.exe"+4F8FA57: 03 42 08                           - add eax,[rdx+08]
"Elliot-Win64-Shipping.exe"+4F8FA5A: 48 83 C2 10                        - add rdx,10
"Elliot-Win64-Shipping.exe"+4F8FA5E: 49 3B D0                           - cmp rdx,r8
"Elliot-Win64-Shipping.exe"+4F8FA61: 75 EF                              - jne "Elliot-Win64-Shipping.exe"+4F8FA52
"Elliot-Win64-Shipping.exe"+4F8FA63: 48 8B 5C 24 30                     - mov rbx,[rsp+30]
"Elliot-Win64-Shipping.exe"+4F8FA68: 48 83 C4 20                        - add rsp,20
"Elliot-Win64-Shipping.exe"+4F8FA6C: 5F                                 - pop rdi
"Elliot-Win64-Shipping.exe"+4F8FA6D: C3                                 - ret
"Elliot-Win64-Shipping.exe"+4F8FA6E: CC                                 - int 3
"Elliot-Win64-Shipping.exe"+4F8FA6F: CC                                 - int 3
"Elliot-Win64-Shipping.exe"+4F8FA70: 48 89 5C 24 08                     - mov [rsp+08],rbx
"Elliot-Win64-Shipping.exe"+4F8FA75: 48 89 74 24 10                     - mov [rsp+10],rsi
"Elliot-Win64-Shipping.exe"+4F8FA7A: 57                                 - push rdi
"Elliot-Win64-Shipping.exe"+4F8FA7B: 48 83 EC 40                        - sub rsp,40
"Elliot-Win64-Shipping.exe"+4F8FA7F: 48 8B DA                           - mov rbx,rdx
"Elliot-Win64-Shipping.exe"+4F8FA82: 33 D2                              - xor edx,edx
}

</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>3111</ID>
          <Description>"Amt.#1"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3112</ID>
          <Description>"Amt.#2"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+8</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3113</ID>
          <Description>"Amt.#3"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+10</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3114</ID>
          <Description>"Amt.#4"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+18</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3115</ID>
          <Description>"Amt.#5"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+20</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3116</ID>
          <Description>"Amt.#6"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+28</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3117</ID>
          <Description>"Amt.#7"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+30</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3118</ID>
          <Description>"Amt.#8"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+38</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3120</ID>
          <Description>"Amt.#9"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+40</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3119</ID>
          <Description>"Amt.#10"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+48</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3122</ID>
          <Description>"Amt.#11"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+50</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3123</ID>
          <Description>"Amt.#12"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+58</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3124</ID>
          <Description>"Amt.#13"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+60</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3125</ID>
          <Description>"Amt.#14"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+68</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3126</ID>
          <Description>"Amt.#15"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+70</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3127</ID>
          <Description>"Amt.#16"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+78</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3128</ID>
          <Description>"Amt.#17"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+80</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3129</ID>
          <Description>"Amt.#18"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+88</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3130</ID>
          <Description>"Amt.#19"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+90</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
        <CheatEntry>
          <ID>3131</ID>
          <Description>"Amt.#20"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>ptrList_arr_INJECT_GET_MSTONE_PIECE_548700+98</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3179</ID>
      <Description>"Longer buff time"</Description>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/06/22
}

[ENABLE]

aobscanmodule(INJECT_LONGER_BUFF,$process,F3 0F 58 ?? 0F 2F ?? F3 ?? 0F 11 ?? ?? 20)
// raw AOB: 48 8D 9F 48 0D 00 00 48 8D 34 C0 48 C1 E6 02 4C 8B E6 4C 8B 3B 48 8B 8F E0 07 00 00 4A 8B 54 3E 0C E8 ?? ?? ?? ?? 48 85 C0 74 ?? F3 42 0F 10 4C 3E 20 F3 42 0F 10 54 3E 1C 0F 2F CA 73 ?? 0F 28 C7 F3 0F 59 C6 F3 0F 58 C1 0F 2F C2 F3 42 0F 11 44 3E 20 72 ?? 48 8B 8F E0 07 00 00 41 B8 FF FF FF FF 4A 8B 54 3E 0C 48 8B 01 FF 90 C0 06 00 00 48 8B 0B 8B 43 08 49 03 CC 41 2B C6 83 E8 01 74 ?? 48 98 48 8D 51 24 4C 8D 04 C0
// injection point AOB: F3 0F 58 ?? 0F 2F ?? F3 ?? 0F 11 ?? ?? 20 72 ?? ?? 8B ?? E0 07 00 00 ?? ?? FF FF FF FF ?? 8B ?? 3E 0C ?? 8B ?? FF ?? C0 06 00 00 ?? 8B ?? 8B ?? 08 ?? 03 ?? ?? 2B ?? 83 ?? 01 74 ?? 48 98 ?? 8D ?? 24 ?? 8D ?? C0
alloc(newmem,$1000)

alloc(INJECT_LONGER_BUFFo, $E)

label(code)
label(return)

INJECT_LONGER_BUFFo:
  readmem(INJECT_LONGER_BUFF, $E)

newmem:
  movss xmm11, [vf_0X]
  mulss xmm0, xmm11

code:
  // addss xmm0,xmm1
  reassemble(INJECT_LONGER_BUFF)
  // comiss xmm0,xmm2
  reassemble(INJECT_LONGER_BUFF+4)
  // movss [rsi+r15+20],xmm0
  reassemble(INJECT_LONGER_BUFF+7)
  jmp far return
  align 10 cc
  vf_0X:
  dd (float)0.2
  dd 0 0 0


INJECT_LONGER_BUFF:
  jmp far newmem
return:
registersymbol(INJECT_LONGER_BUFF INJECT_LONGER_BUFFo)

[DISABLE]

INJECT_LONGER_BUFF:
  readmem(INJECT_LONGER_BUFFo, $E)

unregistersymbol(INJECT_LONGER_BUFF INJECT_LONGER_BUFFo)
dealloc(newmem)
dealloc(INJECT_LONGER_BUFFo)

{
// ORIGINAL CODE - INJECTION POINT: "Elliot-Win64-Shipping.exe"+4F0C423

"Elliot-Win64-Shipping.exe"+4F0C3DE: 48 8D 9F 48 0D 00 00               - lea rbx,[rdi+00000D48]
"Elliot-Win64-Shipping.exe"+4F0C3E5: 48 8D 34 C0                        - lea rsi,[rax+rax*8]
"Elliot-Win64-Shipping.exe"+4F0C3E9: 48 C1 E6 02                        - shl rsi,02
"Elliot-Win64-Shipping.exe"+4F0C3ED: 4C 8B E6                           - mov r12,rsi
"Elliot-Win64-Shipping.exe"+4F0C3F0: 4C 8B 3B                           - mov r15,[rbx]
"Elliot-Win64-Shipping.exe"+4F0C3F3: 48 8B 8F E0 07 00 00               - mov rcx,[rdi+000007E0]
"Elliot-Win64-Shipping.exe"+4F0C3FA: 4A 8B 54 3E 0C                     - mov rdx,[rsi+r15+0C]
"Elliot-Win64-Shipping.exe"+4F0C3FF: E8 2C 94 B2 FF                     - call "Elliot-Win64-Shipping.exe"+4A35830
"Elliot-Win64-Shipping.exe"+4F0C404: 48 85 C0                           - test rax,rax
"Elliot-Win64-Shipping.exe"+4F0C407: 74 45                              - je "Elliot-Win64-Shipping.exe"+4F0C44E
"Elliot-Win64-Shipping.exe"+4F0C409: F3 42 0F 10 4C 3E 20               - movss xmm1,[rsi+r15+20]
"Elliot-Win64-Shipping.exe"+4F0C410: F3 42 0F 10 54 3E 1C               - movss xmm2,[rsi+r15+1C]
"Elliot-Win64-Shipping.exe"+4F0C417: 0F 2F CA                           - comiss xmm1,xmm2
"Elliot-Win64-Shipping.exe"+4F0C41A: 73 76                              - jae "Elliot-Win64-Shipping.exe"+4F0C492
"Elliot-Win64-Shipping.exe"+4F0C41C: 0F 28 C7                           - movaps xmm0,xmm7
"Elliot-Win64-Shipping.exe"+4F0C41F: F3 0F 59 C6                        - mulss xmm0,xmm6
// ---------- INJECTING HERE ----------
"Elliot-Win64-Shipping.exe"+4F0C423: F3 0F 58 C1                        - addss xmm0,xmm1
// ---------- DONE INJECTING  ----------
"Elliot-Win64-Shipping.exe"+4F0C427: 0F 2F C2                           - comiss xmm0,xmm2
"Elliot-Win64-Shipping.exe"+4F0C42A: F3 42 0F 11 44 3E 20               - movss [rsi+r15+20],xmm0
"Elliot-Win64-Shipping.exe"+4F0C431: 72 5F                              - jb "Elliot-Win64-Shipping.exe"+4F0C492
"Elliot-Win64-Shipping.exe"+4F0C433: 48 8B 8F E0 07 00 00               - mov rcx,[rdi+000007E0]
"Elliot-Win64-Shipping.exe"+4F0C43A: 41 B8 FF FF FF FF                  - mov r8d,FFFFFFFF
"Elliot-Win64-Shipping.exe"+4F0C440: 4A 8B 54 3E 0C                     - mov rdx,[rsi+r15+0C]
"Elliot-Win64-Shipping.exe"+4F0C445: 48 8B 01                           - mov rax,[rcx]
"Elliot-Win64-Shipping.exe"+4F0C448: FF 90 C0 06 00 00                  - call qword ptr [rax+000006C0]
"Elliot-Win64-Shipping.exe"+4F0C44E: 48 8B 0B                           - mov rcx,[rbx]
"Elliot-Win64-Shipping.exe"+4F0C451: 8B 43 08                           - mov eax,[rbx+08]
"Elliot-Win64-Shipping.exe"+4F0C454: 49 03 CC                           - add rcx,r12
"Elliot-Win64-Shipping.exe"+4F0C457: 41 2B C6                           - sub eax,r14d
"Elliot-Win64-Shipping.exe"+4F0C45A: 83 E8 01                           - sub eax,01
"Elliot-Win64-Shipping.exe"+4F0C45D: 74 13                              - je "Elliot-Win64-Shipping.exe"+4F0C472
"Elliot-Win64-Shipping.exe"+4F0C45F: 48 98                              - cdqe
"Elliot-Win64-Shipping.exe"+4F0C461: 48 8D 51 24                        - lea rdx,[rcx+24]
}


</AssemblerScript>
    </CheatEntry>
    <CheatEntry>
      <ID>100</ID>
      <Description>"GWorld → more game data"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModuleUE then
  function AOBScanModuleUE(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end
registerLuaFunctionHighlight('AOBScanModuleUE')

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_5214E2', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_5214E2'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModuleUE(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_5214E2')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>101</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_5214E2</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>102</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>103</ID>
                  <Description>"GameWork"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+D38</Address>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>105</ID>
                      <Description>"bStartedWithNewGamePlus"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+1</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>107</ID>
                      <Description>"PlayerStatus (PlayerStatusWork)"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+8</Address>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>108</ID>
                          <Description>"Hp"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>109</ID>
                          <Description>"HpMax"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>110</ID>
                          <Description>"BaseHpMax"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>111</ID>
                          <Description>"HpBuff"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>112</ID>
                          <Description>"Weapon1"</Description>
                          <DropDownList DisplayValueAsItem="1">0:EWeaponType::None
1:EWeaponType::Sword
2:EWeaponType::Spear
3:EWeaponType::Hammer
4:EWeaponType::Bomb
5:EWeaponType::Boomerang
6:EWeaponType::Bow
7:EWeaponType::Kusari
8:EWeaponType::Compass
9:EWeaponType::Num
10:EWeaponType::EWeaponType_MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>113</ID>
                          <Description>"Weapon2"</Description>
                          <DropDownListLink>Weapon1</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+11</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>114</ID>
                          <Description>"supportAction"</Description>
                          <DropDownList DisplayValueAsItem="1">0:ESupportActionType::None
1:ESupportActionType::Warp
2:ESupportActionType::Dash
3:ESupportActionType::Fire
4:ESupportActionType::Attract
5:ESupportActionType::Clone
6:ESupportActionType::Heal
7:ESupportActionType::Num
8:ESupportActionType::ESupportActionType_MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+12</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>115</ID>
                          <Description>"SupportAIMode"</Description>
                          <DropDownList DisplayValueAsItem="1">0:ESupportAIMode::Default
1:ESupportAIMode::Wait
2:ESupportAIMode::Forward
3:ESupportAIMode::Hide
4:ESupportAIMode::Come
5:ESupportAIMode::Num
6:ESupportAIMode::ESupportAIMode_MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+13</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>116</ID>
                          <Description>"bSupportHide"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+14</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>117</ID>
                          <Description>"bEnableReraise"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+15</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>118</ID>
                          <Description>"BuffData"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+18</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>119</ID>
                      <Description>"EquipWeaponIDs [9 x NameProperty (8B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <DropDownList DisplayValueAsItem="1">0:None
8722358:WPN_SWORD
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+50</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>120</ID>
                          <Description>"[0]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>121</ID>
                          <Description>"[1]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>122</ID>
                          <Description>"[2]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>123</ID>
                          <Description>"[3]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+18</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>124</ID>
                          <Description>"[4]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>125</ID>
                          <Description>"[5]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+28</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>126</ID>
                          <Description>"[6]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+30</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>127</ID>
                          <Description>"[7]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+38</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>128</ID>
                          <Description>"[8]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+40</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>129</ID>
                      <Description>"WeaponLevels [9 x ByteProperty (1B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+60</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>130</ID>
                          <Description>"[0]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>131</ID>
                          <Description>"[1]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+1</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>132</ID>
                          <Description>"[2]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+2</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>133</ID>
                          <Description>"[3]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+3</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>134</ID>
                          <Description>"[4]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>135</ID>
                          <Description>"[5]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+5</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>136</ID>
                          <Description>"[6]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+6</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>137</ID>
                          <Description>"[7]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+7</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>138</ID>
                          <Description>"[8]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+8</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>139</ID>
                      <Description>"ArrowMax"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+70</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>140</ID>
                      <Description>"BombMax"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+74</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>141</ID>
                      <Description>"ShieldID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+78</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>145</ID>
                      <Description>"MagicStonePresetData [10 x MagicStonePresetData (16B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+B0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>146</ID>
                          <Description>"[0] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>147</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>148</ID>
                          <Description>"[1] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+10</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>149</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>150</ID>
                          <Description>"[2] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+20</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>151</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>152</ID>
                          <Description>"[3] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>153</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>154</ID>
                          <Description>"[4] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+40</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>155</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>156</ID>
                          <Description>"[5] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+50</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>157</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>158</ID>
                          <Description>"[6] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+60</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>159</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>160</ID>
                          <Description>"[7] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+70</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>161</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>162</ID>
                          <Description>"[8] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+80</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>163</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>164</ID>
                          <Description>"[9] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+90</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>165</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>166</ID>
                      <Description>"SelectingPresetNum"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>167</ID>
                      <Description>"MagicStoneMenuSortTypeIndex"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>168</ID>
                      <Description>"MagicStoneDecomposeSortTypeIndex"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>169</ID>
                      <Description>"MagicStoneCostEnhanceLevel"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+CC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>170</ID>
                      <Description>"MagicStoneLotteryExperience"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+D0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>171</ID>
                      <Description>"MagicStoneShopGachaNewFlag"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+D4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>172</ID>
                      <Description>"MagicStoneShopDecomposeNewFlag"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+D5</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>173</ID>
                      <Description>"MagicStoneShopBoxEnhanceNewFlag"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+D6</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>175</ID>
                      <Description>"SupportType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:ESupportType::None
1:ESupportType::Princess
2:ESupportType::Fairy
3:ESupportType::CatGirl
4:ESupportType::Auto
4:ESupportType::Num
5:ESupportType::ESupportType_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+E8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>176</ID>
                      <Description>"SupportActionLevels [7 x Support (2B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+F0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>177</ID>
                          <Description>"[0] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>178</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>179</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>180</ID>
                          <Description>"[1] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+2</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>181</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>182</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>183</ID>
                          <Description>"[2] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>184</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>185</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>186</ID>
                          <Description>"[3] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+6</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>187</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>188</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>189</ID>
                          <Description>"[4] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>190</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>191</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>192</ID>
                          <Description>"[5] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>193</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>194</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>195</ID>
                          <Description>"[6] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>196</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>197</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>104</ID>
                      <Description>"Bottles [1 x BottleData (12B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+1D0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2511</ID>
                          <Description>"[0] (BottleData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>106</ID>
                              <Description>"InBottleID"</Description>
                              <DropDownList DisplayValueAsItem="1">8721737:ITEM_CONTAINER_HP
</DropDownList>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2512</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>225</ID>
                      <Description>"MONEY"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>8 Bytes</VariableType>
                      <Address>+1E0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1242</ID>
                      <Description>"ActiveSubQuestID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+468</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1243</ID>
                      <Description>"SubQuestNewEntryNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+470</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1244</ID>
                      <Description>"SubQuestNoticeNoOrderNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+474</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1245</ID>
                      <Description>"SubQuestNoticeExpireNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+478</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1246</ID>
                      <Description>"SubQuestExpiredNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+47C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1247</ID>
                      <Description>"SubQuestNoticedTime"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+480</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1274</ID>
                      <Description>"MagicSpringElapsedData {Map: 22, NameProperty → StructProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+5D8</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1275</ID>
                          <Description>"[0] MagicSpring_A4_SW_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1276</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1277</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1278</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1279</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1280</ID>
                          <Description>"[1] MagicSpring_A4_SW_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1281</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1282</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1283</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1284</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1285</ID>
                          <Description>"[2] MagicSpring_A4_SN_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+38</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1286</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1287</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1288</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1289</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1290</ID>
                          <Description>"[3] MagicSpring_A4_SN_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+54</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1291</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1292</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1293</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1294</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1295</ID>
                          <Description>"[4] MagicSpring_A4_LK_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+70</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1296</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1297</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1298</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1299</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1300</ID>
                          <Description>"[5] MagicSpring_A4_FO_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1301</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1302</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1303</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1304</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1305</ID>
                          <Description>"[6] MagicSpring_A4_FG_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1306</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1307</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1308</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1309</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1310</ID>
                          <Description>"[7] MagicSpring_A4_FO_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+C4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1311</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1312</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1313</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1314</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1315</ID>
                          <Description>"[8] MagicSpring_A4_GR_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+E0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1316</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1317</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1318</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1319</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1320</ID>
                          <Description>"[9] MagicSpring_A4_DE_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+FC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1321</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1322</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1323</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1324</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1325</ID>
                          <Description>"[10] MagicSpring_A4_DE_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+118</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1326</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1327</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1328</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1329</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1330</ID>
                          <Description>"[11] MagicSpring_A4_DE_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+134</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1331</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1332</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1333</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1334</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1335</ID>
                          <Description>"[12] MagicSpring_A4_VO_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+150</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1336</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1337</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1338</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1339</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1340</ID>
                          <Description>"[13] MagicSpring_A4_VO_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+16C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1341</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1342</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1343</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1344</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1345</ID>
                          <Description>"[14] MagicSpring_A4_GR_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+188</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1346</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1347</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1348</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1349</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1350</ID>
                          <Description>"[15] MagicSpring_A4_VO_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1A4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1351</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1352</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1353</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1354</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1355</ID>
                          <Description>"[16] MagicSpring_A4_VO_04"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1C0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1356</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1357</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1358</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1359</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1360</ID>
                          <Description>"[17] MagicSpring_A4_SN_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1DC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1361</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1362</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1363</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1364</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1365</ID>
                          <Description>"[18] MagicSpring_A4_SW_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1F8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1366</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1367</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1368</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1369</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1370</ID>
                          <Description>"[19] MagicSpring_A4_GR_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+214</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1371</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1372</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1373</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1374</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1375</ID>
                          <Description>"[20] MagicSpring_A4_SW_04"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+230</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1376</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1377</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1378</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1379</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1380</ID>
                          <Description>"[21] MagicSpring_A4_SW_05"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+24C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1381</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1382</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1383</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1384</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1385</ID>
                      <Description>"RecoveryMagicPointValue"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+628</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1386</ID>
                      <Description>"ReachedMapIDs {Set: 3, NameProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+630</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1387</ID>
                          <Description>"[0] DNG_EVENT_SPACE_04_1F"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1388</ID>
                          <Description>"[1] DNG_TOWN_PALACE_A4_1F"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1389</ID>
                          <Description>"[2] FLD_A4"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1390</ID>
                      <Description>"PlayedEventList {Set: 3, NameProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+680</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1391</ID>
                          <Description>"[0] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1392</ID>
                          <Description>"[1] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1393</ID>
                          <Description>"[2] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1394</ID>
                      <Description>"NewEventList {Set: 3, NameProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+6D0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1395</ID>
                          <Description>"[0] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1396</ID>
                          <Description>"[1] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1397</ID>
                          <Description>"[2] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1402</ID>
                      <Description>"TargetSubQuestPointID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+790</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1403</ID>
                      <Description>"EventByStoryProgress"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+798</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1404</ID>
                      <Description>"MinimapMaskList {Map: 2, NameProperty → StructProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+7A0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1405</ID>
                          <Description>"[0] DNG_TOWN_PALACE_A4_1F"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1406</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1407</ID>
                              <Description>"Value (MinimapMask)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1408</ID>
                                  <Description>"MapID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1409</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1410</ID>
                                  <Description>"min.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1411</ID>
                                  <Description>"min.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1412</ID>
                                  <Description>"max.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1413</ID>
                                  <Description>"max.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1414</ID>
                                  <Description>"Width"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+30</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1415</ID>
                                  <Description>"Height"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+34</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1416</ID>
                                  <Description>"LineSize"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+38</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1417</ID>
                                  <Description>"MaskMap [62 x UInt32Property (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1418</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1419</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1420</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1421</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1422</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1423</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1424</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1425</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1426</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1427</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1428</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1429</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1430</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1431</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1432</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1433</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1434</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1435</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1436</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1437</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1438</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1439</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1440</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1441</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1442</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1443</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1444</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1445</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1446</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1447</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1448</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1449</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1450</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1451</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1452</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1453</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1454</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1455</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1456</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1457</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1458</ID>
                                      <Description>"[40]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1459</ID>
                                      <Description>"[41]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1460</ID>
                                      <Description>"[42]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1461</ID>
                                      <Description>"[43]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1462</ID>
                                      <Description>"[44]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1463</ID>
                                      <Description>"[45]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1464</ID>
                                      <Description>"[46]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1465</ID>
                                      <Description>"[47]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1466</ID>
                                      <Description>"[48]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1467</ID>
                                      <Description>"[49]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1468</ID>
                                      <Description>"[50]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1469</ID>
                                      <Description>"[51]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+CC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1470</ID>
                                      <Description>"[52]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1471</ID>
                                      <Description>"[53]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1472</ID>
                                      <Description>"[54]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1473</ID>
                                      <Description>"[55]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+DC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1474</ID>
                                      <Description>"[56]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+E0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1475</ID>
                                      <Description>"[57]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+E4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1476</ID>
                                      <Description>"[58]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1477</ID>
                                      <Description>"[59]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1478</ID>
                                      <Description>"[60]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1479</ID>
                                      <Description>"[61]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+F4</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1480</ID>
                          <Description>"[1] FLD_A4"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+60</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1481</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1482</ID>
                              <Description>"Value (MinimapMask)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1483</ID>
                                  <Description>"MapID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1484</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1485</ID>
                                  <Description>"min.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1486</ID>
                                  <Description>"min.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1487</ID>
                                  <Description>"max.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1488</ID>
                                  <Description>"max.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1489</ID>
                                  <Description>"Width"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+30</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1490</ID>
                                  <Description>"Height"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+34</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1491</ID>
                                  <Description>"LineSize"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+38</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1492</ID>
                                  <Description>"MaskMap [54 x UInt32Property (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1493</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1494</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1495</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1496</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1497</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1498</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1499</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1500</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1501</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1502</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1503</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1504</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1505</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1506</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1507</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1508</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1509</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1510</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1511</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1512</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1513</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1514</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1515</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1516</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1517</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1518</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1519</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1520</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1521</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1522</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1523</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1524</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1525</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1526</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1527</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1528</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1529</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1530</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1531</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1532</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1533</ID>
                                      <Description>"[40]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1534</ID>
                                      <Description>"[41]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1535</ID>
                                      <Description>"[42]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1536</ID>
                                      <Description>"[43]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1537</ID>
                                      <Description>"[44]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1538</ID>
                                      <Description>"[45]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1539</ID>
                                      <Description>"[46]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1540</ID>
                                      <Description>"[47]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1541</ID>
                                      <Description>"[48]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1542</ID>
                                      <Description>"[49]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1543</ID>
                                      <Description>"[50]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1544</ID>
                                      <Description>"[51]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+CC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1545</ID>
                                      <Description>"[52]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1546</ID>
                                      <Description>"[53]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D4</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1547</ID>
                      <Description>"CatInfoList {Map: 50, NameProperty → StructProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+7F0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1548</ID>
                          <Description>"[0] CAT001"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1549</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1550</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1551</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1552</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECatLivingMode::Free
1:ECatLivingMode::Town
2:ECatLivingMode::MyRoom
3:ECatLivingMode::Wait
4:ECatLivingMode::Ending
5:ECatLivingMode::None
6:ECatLivingMode::ECatLivingMode_MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1553</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1554</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1555</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1556</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1557</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1558</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1559</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1560</ID>
                          <Description>"[1] CAT002"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+3C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1561</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1562</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1563</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1564</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1565</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1566</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1567</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1568</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1569</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1570</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1571</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1572</ID>
                          <Description>"[2] CAT003"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+78</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1573</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1574</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1575</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1576</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1577</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1578</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1579</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1580</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1581</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1582</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1583</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1584</ID>
                          <Description>"[3] CAT004"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1585</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1586</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1587</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1588</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1589</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1590</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1591</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1592</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1593</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1594</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1595</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1596</ID>
                          <Description>"[4] CAT005"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+F0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1597</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1598</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1599</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1600</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1601</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1602</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1603</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1604</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1605</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1606</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1607</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1608</ID>
                          <Description>"[5] CAT006"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+12C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1609</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1610</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1611</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1612</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1613</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1614</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1615</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1616</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1617</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1618</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1619</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1620</ID>
                          <Description>"[6] CAT007"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+168</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1621</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1622</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1623</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1624</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1625</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1626</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1627</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1628</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1629</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1630</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1631</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1632</ID>
                          <Description>"[7] CAT008"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1A4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1633</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1634</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1635</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1636</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1637</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1638</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1639</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1640</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1641</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1642</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1643</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1644</ID>
                          <Description>"[8] CAT009"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1E0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1645</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1646</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1647</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1648</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1649</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1650</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1651</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1652</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1653</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1654</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1655</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1656</ID>
                          <Description>"[9] CAT010"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+21C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1657</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1658</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1659</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1660</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1661</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1662</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1663</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1664</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1665</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1666</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1667</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1668</ID>
                          <Description>"[10] CAT011"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+258</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1669</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1670</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1671</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1672</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1673</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1674</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1675</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1676</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1677</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1678</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1679</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1680</ID>
                          <Description>"[11] CAT012"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+294</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1681</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1682</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1683</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1684</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1685</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1686</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1687</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1688</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1689</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1690</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1691</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1692</ID>
                          <Description>"[12] CAT013"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+2D0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1693</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1694</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1695</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1696</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1697</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1698</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1699</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1700</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1701</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1702</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1703</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1704</ID>
                          <Description>"[13] CAT014"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1705</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1706</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1707</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1708</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1709</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1710</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1711</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1712</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1713</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1714</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1715</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1716</ID>
                          <Description>"[14] CAT015"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+348</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1717</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1718</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1719</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1720</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1721</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1722</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1723</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1724</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1725</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1726</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1727</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1728</ID>
                          <Description>"[15] CAT016"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+384</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1729</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1730</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1731</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1732</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1733</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1734</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1735</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1736</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1737</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1738</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1739</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1740</ID>
                          <Description>"[16] CAT017"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+3C0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1741</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1742</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1743</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1744</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1745</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1746</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1747</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1748</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1749</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1750</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1751</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1752</ID>
                          <Description>"[17] CAT018"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+3FC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1753</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1754</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1755</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1756</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1757</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1758</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1759</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1760</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1761</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1762</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1763</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1764</ID>
                          <Description>"[18] CAT019"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+438</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1765</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1766</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1767</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1768</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1769</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1770</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1771</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1772</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1773</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1774</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1775</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1776</ID>
                          <Description>"[19] CAT020"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+474</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1777</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1778</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1779</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1780</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1781</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1782</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1783</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1784</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1785</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1786</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1787</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1788</ID>
                          <Description>"[20] CAT021"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+4B0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1789</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1790</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1791</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1792</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1793</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1794</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1795</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1796</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1797</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1798</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1799</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1800</ID>
                          <Description>"[21] CAT022"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+4EC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1801</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1802</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1803</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1804</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1805</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1806</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1807</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1808</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1809</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1810</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1811</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1812</ID>
                          <Description>"[22] CAT023"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+528</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1813</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1814</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1815</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1816</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1817</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1818</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1819</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1820</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1821</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1822</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1823</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1824</ID>
                          <Description>"[23] CAT024"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+564</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1825</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1826</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1827</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1828</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1829</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1830</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1831</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1832</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1833</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1834</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1835</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1836</ID>
                          <Description>"[24] CAT025"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+5A0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1837</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1838</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1839</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1840</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1841</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1842</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1843</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1844</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1845</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1846</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1847</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1848</ID>
                          <Description>"[25] CAT026"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+5DC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1849</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1850</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1851</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1852</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1853</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1854</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1855</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1856</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1857</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1858</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1859</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1860</ID>
                          <Description>"[26] CAT027"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+618</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1861</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1862</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1863</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1864</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1865</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1866</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1867</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1868</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1869</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1870</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1871</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1872</ID>
                          <Description>"[27] CAT028"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+654</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1873</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1874</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1875</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1876</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1877</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1878</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1879</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1880</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1881</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1882</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1883</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1884</ID>
                          <Description>"[28] CAT029"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+690</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1885</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1886</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1887</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1888</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1889</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1890</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1891</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1892</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1893</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1894</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1895</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1896</ID>
                          <Description>"[29] CAT030"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+6CC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1897</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1898</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1899</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1900</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1901</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1902</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1903</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1904</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1905</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1906</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1907</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1908</ID>
                          <Description>"[30] CAT031"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+708</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1909</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1910</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1911</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1912</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1913</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1914</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1915</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1916</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1917</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1918</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1919</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1920</ID>
                          <Description>"[31] CAT032"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+744</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1921</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1922</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1923</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1924</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1925</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1926</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1927</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1928</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1929</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1930</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1931</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1932</ID>
                          <Description>"[32] CAT033"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+780</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1933</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1934</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1935</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1936</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1937</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1938</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1939</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1940</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1941</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1942</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1943</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1944</ID>
                          <Description>"[33] CAT034"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+7BC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1945</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1946</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1947</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1948</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1949</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1950</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1951</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1952</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1953</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1954</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1955</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1956</ID>
                          <Description>"[34] CAT035"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+7F8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1957</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1958</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1959</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1960</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1961</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1962</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1963</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1964</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1965</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1966</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1967</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1968</ID>
                          <Description>"[35] CAT036"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+834</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1969</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1970</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1971</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1972</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1973</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1974</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1975</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1976</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1977</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1978</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1979</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1980</ID>
                          <Description>"[36] CAT037"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+870</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1981</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1982</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1983</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1984</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1985</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1986</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1987</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1988</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1989</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1990</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1991</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1992</ID>
                          <Description>"[37] CAT038"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8AC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1993</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1994</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1995</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1996</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1997</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1998</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1999</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2000</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2001</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2002</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2003</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2004</ID>
                          <Description>"[38] CAT039"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8E8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2005</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2006</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2007</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2008</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2009</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2010</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2011</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2012</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2013</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2014</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2015</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2016</ID>
                          <Description>"[39] CAT040"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+924</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2017</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2018</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2019</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2020</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2021</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2022</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2023</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2024</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2025</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2026</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2027</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2028</ID>
                          <Description>"[40] CAT041"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+960</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2029</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2030</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2031</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2032</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2033</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2034</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2035</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2036</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2037</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2038</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2039</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2040</ID>
                          <Description>"[41] CAT042"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+99C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2041</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2042</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2043</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2044</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2045</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2046</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2047</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2048</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2049</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2050</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2051</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2052</ID>
                          <Description>"[42] CAT043"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+9D8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2053</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2054</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2055</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2056</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2057</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2058</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2059</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2060</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2061</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2062</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2063</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2064</ID>
                          <Description>"[43] CAT044"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A14</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2065</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2066</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2067</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2068</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2069</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2070</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2071</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2072</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2073</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2074</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2075</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2076</ID>
                          <Description>"[44] CAT045"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A50</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2077</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2078</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2079</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2080</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2081</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2082</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2083</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2084</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2085</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2086</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2087</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2088</ID>
                          <Description>"[45] CAT046"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A8C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2089</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2090</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2091</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2092</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2093</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2094</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2095</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2096</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2097</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2098</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2099</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2100</ID>
                          <Description>"[46] CAT047"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+AC8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2101</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2102</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2103</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2104</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2105</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2106</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2107</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2108</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2109</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2110</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2111</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2112</ID>
                          <Description>"[47] NPC0510"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B04</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2113</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2114</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2115</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2116</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2117</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2118</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2119</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2120</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2121</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2122</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2123</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2124</ID>
                          <Description>"[48] NPC0730"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B40</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2125</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2126</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2127</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2128</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2129</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2130</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2131</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2132</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2133</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2134</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2135</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2136</ID>
                          <Description>"[49] NPC0720"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B7C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2137</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2138</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2139</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2140</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2141</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2142</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2143</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2144</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2145</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2146</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2147</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2148</ID>
                      <Description>"MyRoomCat"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+840</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2149</ID>
                      <Description>"ArenaNowDifficulty"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EArenaDifficulty::Rookie
1:EArenaDifficulty::Expert
2:EArenaDifficulty::Veteran
3:EArenaDifficulty::Legend
4:EArenaDifficulty::Num
5:EArenaDifficulty::EArenaDifficulty_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+848</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2150</ID>
                      <Description>"ArenaNowFloor"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+84C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2155</ID>
                      <Description>"IsNewMainMenuCategory [7 x BoolProperty (1B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+890</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2156</ID>
                          <Description>"[0]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2157</ID>
                          <Description>"[1]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+1</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2158</ID>
                          <Description>"[2]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+2</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2159</ID>
                          <Description>"[3]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+3</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2160</ID>
                          <Description>"[4]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2161</ID>
                          <Description>"[5]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+5</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2162</ID>
                          <Description>"[6]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+6</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2164</ID>
                      <Description>"MiniGames [6 x FairyMiniGameData (8B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+8F0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2165</ID>
                          <Description>"[0] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2166</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2167</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2168</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2169</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2170</ID>
                          <Description>"[1] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2171</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2172</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2173</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2174</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2175</ID>
                          <Description>"[2] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+10</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2176</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2177</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2178</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2179</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2180</ID>
                          <Description>"[3] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+18</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2181</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2182</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2183</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2184</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2185</ID>
                          <Description>"[4] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+20</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2186</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2187</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2188</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2189</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2190</ID>
                          <Description>"[5] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+28</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2191</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2192</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2193</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2194</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2196</ID>
                      <Description>"IsNewSoundGallery"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+910</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2200</ID>
                      <Description>"bDispSpecialSecretClearOnce"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+988</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2201</ID>
                      <Description>"MarkedNpcEventIDs"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+990</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2202</ID>
                      <Description>"KeyConfigType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EKeyConfigPreset::TypeA
1:EKeyConfigPreset::TypeB
2:EKeyConfigPreset::TypeC
3:EKeyConfigPreset::Custom
4:EKeyConfigPreset::EKeyConfigPreset_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+9E0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2203</ID>
                      <Description>"IsOrderedAnySubQuest"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+9E1</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2204</ID>
                      <Description>"bIsFairyMouseMove"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+9E2</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2205</ID>
                      <Description>"SavePointID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9E4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2206</ID>
                      <Description>"OverrideSavePointID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9EC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2207</ID>
                      <Description>"SaveMapID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9F4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2208</ID>
                      <Description>"OverrideSaveMapID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9FC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2209</ID>
                      <Description>"LoadSlotIndex"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+A3C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2210</ID>
                      <Description>"Difficulty"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EDifficulty::VERY_EASY
1:EDifficulty::EASY
2:EDifficulty::NORMAL
3:EDifficulty::HARD
4:EDifficulty::Max
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+A3D</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2211</ID>
                      <Description>"SaveTime (DateTime)"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+A40</Address>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2212</ID>
                          <Description>"Ticks"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>8 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2213</ID>
                      <Description>"ElapsedActiveTime"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Double</VariableType>
                      <Address>+A48</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2215</ID>
                      <Description>"FootprintLocations [4 x FootPrintData (32B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+A60</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2216</ID>
                          <Description>"[0] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2217</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2218</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2219</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2220</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2221</ID>
                          <Description>"[1] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+20</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2222</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2223</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2224</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2225</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2226</ID>
                          <Description>"[2] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+40</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2227</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2228</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2229</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2230</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2231</ID>
                          <Description>"[3] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+60</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2232</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2233</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2234</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2235</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2238</ID>
                      <Description>"MemoShelfCheckNum"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+A90</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2496</ID>
                      <Description>"FlagDispChainCountOnlyLvUP"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AA8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2497</ID>
                      <Description>"DeadNum"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+AAC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2498</ID>
                      <Description>"bChargeAttackDirection"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2499</ID>
                      <Description>"bSkillDirection"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB1</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2500</ID>
                      <Description>"DestinationType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EDestinationType::Standard
1:EDestinationType::Always
2:EDestinationType::Invisible
3:EDestinationType::EDestinationType_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB2</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2501</ID>
                      <Description>"OperationGuideType"</Description>
                      <DropDownListLink>DestinationType</DropDownListLink>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB3</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2502</ID>
                      <Description>"AbilitySwitchType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EAbilitySwitchType::SCMenu
1:EAbilitySwitchType::Direct
2:EAbilitySwitchType::MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2503</ID>
                      <Description>"SupportTalkType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:ESupportTalkType::Many
1:ESupportTalkType::Little
2:ESupportTalkType::MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB5</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2504</ID>
                      <Description>"bVisibleEventCharacter"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB6</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2505</ID>
                      <Description>"bAutoCaption"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB7</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2506</ID>
                      <Description>"bFrameRateGraphicPrioritized"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB8</Address>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>2800</ID>
              <Description>"GameState"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+1B0</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>2801</ID>
                  <Description>"PlayerArray"</Description>
                  <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+2E0</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>2896</ID>
                      <Description>"[0]"</Description>
                      <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2802</ID>
                          <Description>"PawnPrivate"</Description>
                          <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+340</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2803</ID>
                              <Description>"AbilitySystemComponent"</Description>
                              <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+7E0</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2804</ID>
                                  <Description>"SpawnedAttributes [3 x ObjectProperty (8B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+10A8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2944</ID>
                                      <Description>"[0] ShieldAttributeSet_2147477186 (ShieldAttributeSet)"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2945</ID>
                                          <Description>"GuardMaxEndurance (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+30</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2946</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2947</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2948</ID>
                                          <Description>"GuardNeedEndurance (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+40</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2949</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2950</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2951</ID>
                                          <Description>"GuardHealTimeNormal (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2952</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2953</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2954</ID>
                                          <Description>"GuardHealTimeBreak (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+60</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2955</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2956</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2957</ID>
                                          <Description>"GuardDefensibleDeg (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+70</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2958</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2959</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2960</ID>
                                          <Description>"GuardKnockbackRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+80</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2961</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2962</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2963</ID>
                                          <Description>"GuardCoefficientOfRestitution (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+90</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2964</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2965</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2966</ID>
                                          <Description>"GuardJustTime (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2967</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2968</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2969</ID>
                                          <Description>"GuardStartTime (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2970</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2971</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2972</ID>
                                          <Description>"GuardMoveSpeedRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2973</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2974</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2975</ID>
                                          <Description>"GuardFixedOrientation (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+D0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2976</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2977</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>142</ID>
                                          <Description>"GuardEnableGuardBreakSlomo (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+E0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>143</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>144</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2978</ID>
                                          <Description>"GuardJustRandomRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+F0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2979</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2980</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2905</ID>
                                      <Description>"[1] ExtraAttributeSet_2147477185 (ExtraAttributeSet)"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+8</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2906</ID>
                                          <Description>"ExpandFairyItemGetRange (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+30</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2907</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2908</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2909</ID>
                                          <Description>"FairyAttackTimeRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+40</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2910</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2911</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2912</ID>
                                          <Description>"SupportActionCooldownRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2913</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2914</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2915</ID>
                                          <Description>"SupportActionConsumeGaugeRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+60</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2916</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2917</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2918</ID>
                                          <Description>"RareEnemyAppearRateMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+70</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2919</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2920</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2921</ID>
                                          <Description>"SpecialEnemyAppearRateMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+80</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2922</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2923</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2924</ID>
                                          <Description>"EnemyDropItemDoubleRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+90</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2925</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2926</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2927</ID>
                                          <Description>"EnemyDropMoneyDoubleRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2928</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2929</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2930</ID>
                                          <Description>"BuffItemTimeMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2931</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2932</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2933</ID>
                                          <Description>"EnemyDropMoneyAndPieceRateMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2934</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2935</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2805</ID>
                                      <Description>"[2] CharacterAttributeSet_2147477188 (CharacterAttributeSet)"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+10</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2806</ID>
                                          <Description>"HealthPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+30</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2807</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2808</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2809</ID>
                                          <Description>"MaxHealthPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+40</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2810</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2811</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2812</ID>
                                          <Description>"HealthPointBuff (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2813</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2814</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2815</ID>
                                          <Description>"MinHealthPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+60</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2816</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2817</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2818</ID>
                                          <Description>"ResuscitationPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+70</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2819</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2820</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2821</ID>
                                          <Description>"CalculatedDamage (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+80</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2822</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2823</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2824</ID>
                                          <Description>"BasicDefense (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+90</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2825</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2826</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2827</ID>
                                          <Description>"AdditiveDefense (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2828</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2829</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2830</ID>
                                          <Description>"MultiplicativeDefense (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2831</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2832</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2833</ID>
                                          <Description>"MultiplicativeDefenseBOS410 (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2834</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2835</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2836</ID>
                                          <Description>"BasicAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+D0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2837</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2838</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2839</ID>
                                          <Description>"BasicMultiplicativeAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+E0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2840</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2841</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2842</ID>
                                          <Description>"AdditiveAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+F0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2843</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2844</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2845</ID>
                                          <Description>"MultiplicativeAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+100</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2846</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2847</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2848</ID>
                                          <Description>"KnockbackRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+110</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2849</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2850</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2851</ID>
                                          <Description>"MaxDivingOxygenPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+120</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2852</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2853</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2854</ID>
                                          <Description>"DivingOxygenPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+130</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2855</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2856</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2857</ID>
                                          <Description>"DivingOxygenConsumption (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+140</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2858</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2859</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2860</ID>
                                          <Description>"DivingOxygenHealNormal (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+150</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2861</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2862</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2863</ID>
                                          <Description>"DivingOxygenHealDeficiency (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+160</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2864</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2865</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2866</ID>
                                          <Description>"DivingOxygenRecoverDeficiency (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+170</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2867</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2868</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2869</ID>
                                          <Description>"BasicMoveSpeed (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+180</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2870</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2871</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2872</ID>
                                          <Description>"AdditiveMoveSpeed (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+190</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2873</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2874</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2875</ID>
                                          <Description>"MultiplicativeMoveSpeed (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2876</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2877</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2878</ID>
                                          <Description>"InputMovementSpeedRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2879</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2880</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2881</ID>
                                          <Description>"ActionMovementSpeedRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2882</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2883</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2884</ID>
                                          <Description>"BasicJumpZVelocity (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1D0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2885</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2886</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2887</ID>
                                          <Description>"AdditiveJumpZVelocity (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1E0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2888</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2889</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2890</ID>
                                          <Description>"MultiplicativeJumpZVelocity (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1F0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2891</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2892</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2893</ID>
                                          <Description>"GuardEndurance (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+200</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2894</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2895</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3150</ID>
                              <Description>"SupportActionGauge [7 x FloatProperty (4B)]"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+D78</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>3151</ID>
                                  <Description>"[0]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>3152</ID>
                                  <Description>"[1]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>3153</ID>
                                  <Description>"[2]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>3154</ID>
                                  <Description>"[3]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>3155</ID>
                                  <Description>"[4]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>3156</ID>
                                  <Description>"[5]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>3157</ID>
                                  <Description>"[6]"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3102</ID>
      <Description>"Require UE5CEDumper DLL proxy installed"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <GroupHeader>1</GroupHeader>
      <CheatEntries>
        <CheatEntry>
          <ID>3085</ID>
          <Description>"Teleport: Save marker 1 [Num0]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Save marker 1 -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 1)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Save marker 1 -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>96</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3088</ID>
          <Description>"Teleport: Recall marker 1 [Num .]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Recall marker 1 -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 2)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Recall marker 1 -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>110</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3091</ID>
          <Description>"Teleport: Recall last [Num -]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Recall last -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 7)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Recall last -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>109</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3094</ID>
          <Description>"Teleport: To cursor [F4]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Teleport to cursor -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeDouble(mb + 0x328, 100.0)   -- zOffset
  writeBytes(mb + 0x330, 0)            -- trace channel
  writeBytes(mb + 0x331, 1)            -- fall back to screen center
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 4)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Teleport to cursor -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>115</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3097</ID>
          <Description>"Teleport: TP facing direction (short range) [Num 5]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Teleport facing direction -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeDouble(mb + 0x328, 800.0)  -- distance (uu; -ve = backward)
  writeBytes(mb + 0x330, 0)            -- mode (0 = horizontal, 1 = 3D)
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 12)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Teleport facing direction -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>101</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3101</ID>
          <Description>"Teleport: Clear all markers"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Clear all markers -- Generated by UE5CEDumper
-- Momentary action: clears slots 1-3, then auto-unticks.
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

for slot = 0, 2 do
  if readInteger(mb + 0x00) == 0 then
    writeQword(mb + 0x18, slot)            -- slot
    writeQword(mb + 0x10, 6)               -- op = CLEAR_MARKER
    writeInteger(mb + 0x04, 0)             -- clear status
    writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
    local elapsed = 0
    while readInteger(mb + 0x04) ~= 1 do
      sleep(1); elapsed = elapsed + 1
      if elapsed &gt;= 10000 then break end
    end
  end
end
print('[Teleport] all markers cleared')

local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3104</ID>
      <Description>"The Adventures of Elliot: The Millennium Tales  /  https://opencheattables.com  /  CE 7.6+"</Description>
      <Color>00AA00</Color>
      <GroupHeader>1</GroupHeader>
    </CheatEntry>
  </CheatEntries>
  <UserdefinedSymbols/>
</CheatTable>
