<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="51">
  <CheatEntries>
    <CheatEntry>
      <ID>1131</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>100</ID>
      <Description>"Chars / Gold (Unreal Engine)"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(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

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_23978C', aob='89 7C 24 ?? 55 48 8B EC 48 83 EC ?? 48 8B 05 ?? ?? ?? ?? 48 8B D9 48 8D 4D 10 48 8B 50 18 48', pos=15, aoblen=19, symbol='gworld_addr_23978C'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(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_23978C')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>101</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_23978C</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>+180</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>103</ID>
                  <Description>"CharacterSystem"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+1C0</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>104</ID>
                      <Description>"GameCharacterManager"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+30</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>105</ID>
                          <Description>"GameCharacters [N x ObjectProperty]"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+28</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>106</ID>
                              <Description>"[0]"</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>107</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>108</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>109</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>110</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>111</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>112</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>113</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>114</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>115</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>116</ID>
                                              <Description>"Value: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>117</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>118</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>119</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>120</ID>
                                      <Description>"JobLevelMap {Map: 1, ByteProperty → StructProperty}"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>121</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>122</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>123</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>124</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>125</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>126</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>127</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>128</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>129</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>130</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>131</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>132</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>133</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>134</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>135</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>136</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>137</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>138</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>139</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>140</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>141</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>142</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>143</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>144</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>145</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>146</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>147</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>148</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>149</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>150</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>151</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>152</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>153</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>154</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>155</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>156</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>157</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>158</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>159</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>160</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>161</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>162</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>163</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>164</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>165</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>166</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>167</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>168</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>169</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>170</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>171</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>172</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>173</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>174</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>175</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>176</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>177</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>178</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>179</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>180</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>181</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>182</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>183</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>184</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>185</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>186</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>187</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>188</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>189</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>190</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>191</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>192</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>193</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>194</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>195</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>196</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>197</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>198</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>199</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>200</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>201</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>202</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>203</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>204</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>205</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>206</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>207</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>208</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>209</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>210</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>211</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>212</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>213</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>214</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>215</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>216</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>217</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>218</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>219</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>220</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>221</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>222</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>223</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>224</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>225</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>226</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>227</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>228</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>229</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>230</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>231</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>232</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>233</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>234</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>235</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>236</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>237</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>238</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>245</ID>
                              <Description>"[1]"</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>246</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>247</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>248</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>249</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>250</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>251</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>252</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>253</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>254</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>255</ID>
                                              <Description>"Value: 2"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>256</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>257</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>258</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>259</ID>
                                      <Description>"JobLevelMap {Map: 1, ByteProperty → StructProperty}"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>260</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>261</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>262</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>263</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>264</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>265</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>266</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>267</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>268</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>269</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>270</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>271</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>272</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>273</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>274</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>275</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>276</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>277</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>278</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>279</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>280</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>281</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>282</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>283</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>284</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>285</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>286</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>287</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>288</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>289</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>290</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>291</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>292</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>293</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>294</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>295</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>296</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>297</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>298</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>299</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>300</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>301</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>302</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>303</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>304</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>305</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>306</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>307</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>308</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>309</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>310</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>311</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>312</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>313</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>314</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>315</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>316</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>317</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>318</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>319</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>320</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>321</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>322</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>323</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>324</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>325</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>326</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>327</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>328</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>329</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>330</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>331</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>332</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>333</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>334</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>335</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>336</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>337</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>338</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>339</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>340</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>341</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>342</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>343</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>344</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>345</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>346</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>347</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>348</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>349</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>350</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>351</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>352</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>353</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>354</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>355</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>356</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>357</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>358</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>359</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>360</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>361</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>362</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>363</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>364</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>365</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>366</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>367</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>368</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>369</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>370</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>371</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>372</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>373</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>374</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>375</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>376</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>377</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>384</ID>
                              <Description>"[2]"</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>385</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>386</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>387</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>388</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>389</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>390</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>391</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>392</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>393</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>394</ID>
                                              <Description>"Value: 3"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>395</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>396</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>397</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>398</ID>
                                      <Description>"JobLevelMap {Map: 1, ByteProperty → StructProperty}"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>399</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>400</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>401</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>402</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>403</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>404</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>405</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>406</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>407</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>408</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>409</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>410</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>411</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>412</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>413</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>414</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>415</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>416</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>417</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>418</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>419</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>420</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>421</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>422</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>423</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>424</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>425</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>426</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>427</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>428</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>429</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>430</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>431</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>432</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>433</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>434</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>435</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>436</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>437</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>438</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>439</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>440</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>441</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>442</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>443</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>444</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>445</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>446</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>447</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>448</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>449</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>450</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>451</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>452</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>453</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>454</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>455</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>456</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>457</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>458</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>459</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>460</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>461</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>462</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>463</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>464</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>465</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>466</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>467</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>468</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>469</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>470</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>471</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>472</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>473</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>474</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>475</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>476</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>477</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>478</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>479</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>480</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>481</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>482</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>483</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>484</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>485</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>486</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>487</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>488</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>489</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>490</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>491</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>492</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>493</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>494</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>495</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>496</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>497</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>498</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>499</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>500</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>501</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>502</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>503</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>504</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>505</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>506</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>507</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>508</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>509</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>510</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>511</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>512</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>513</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>514</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>515</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>516</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>523</ID>
                              <Description>"[3]"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+18</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>524</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>525</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>526</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>527</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>528</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>529</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>530</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>531</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>532</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>533</ID>
                                              <Description>"Value: 4"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>534</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>535</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>536</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>537</ID>
                                      <Description>"JobLevelMap {Map: 1, ByteProperty → StructProperty}"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>538</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>539</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>540</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>541</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>542</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>543</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>544</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>545</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>546</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>547</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>548</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>549</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>550</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>551</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>552</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>553</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>554</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>555</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>556</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>557</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>558</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>559</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>560</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>561</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>562</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>563</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>564</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>565</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>566</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>567</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>568</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>569</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>570</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>571</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>572</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>573</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>574</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>575</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>576</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>577</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>578</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>579</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>580</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>581</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>582</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>583</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>584</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>585</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>586</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>587</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>588</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>589</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>590</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>591</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>592</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>593</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>594</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>595</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>596</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>597</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>598</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>599</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>600</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>601</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>602</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>603</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>604</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>605</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>606</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>607</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>608</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>609</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>610</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>611</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>612</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>613</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>614</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>615</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>616</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>617</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>618</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>619</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>620</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>621</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>622</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>623</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>624</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>625</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>626</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>627</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>628</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>629</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>630</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>631</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>632</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>633</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>634</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>635</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>636</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>637</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>638</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>639</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>640</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>641</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>642</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>643</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>644</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>645</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>646</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>647</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>648</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>649</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>650</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>651</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>652</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>653</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>654</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>655</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>662</ID>
                              <Description>"[4]"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+20</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>663</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>664</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>665</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>666</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>667</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>668</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>669</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>670</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>671</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>672</ID>
                                              <Description>"Value: 5"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>673</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>674</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>675</ID>
                                              <Description>"Value: 10"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>676</ID>
                                      <Description>"JobLevelMap {Map: 4, ByteProperty → StructProperty}"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>677</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>678</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>679</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>680</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>681</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>682</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>683</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>684</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>685</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>686</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>687</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>688</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>689</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>690</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>691</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>692</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>693</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>694</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>695</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>696</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>697</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>698</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>699</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>700</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>701</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>702</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>703</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>704</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>705</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>706</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>707</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>708</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>709</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>710</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>711</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>712</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>713</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>714</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>715</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>716</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>717</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>718</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>719</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>720</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>721</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>722</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>723</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>724</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>725</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>726</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>727</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>728</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>729</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>730</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>731</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>732</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>733</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>734</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>735</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>736</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>737</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>738</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>739</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>740</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>741</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>742</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>743</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>744</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>745</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>746</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>747</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>748</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>749</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>750</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>751</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>752</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>753</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>754</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>755</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>756</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>757</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>758</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>759</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>760</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>761</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>762</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>763</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>764</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>765</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>766</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>767</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>768</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>769</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>770</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>771</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>772</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>773</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>774</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>775</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>776</ID>
                                  <Description>"CostumeLinkGameCharacter"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+690</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>777</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>778</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>779</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>780</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>781</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>782</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>783</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>784</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>785</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>786</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>787</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>788</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>789</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>790</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>791</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>792</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>793</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>794</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>239</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>801</ID>
                              <Description>"[5]"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+28</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>802</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>803</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>804</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>805</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>806</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>807</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>808</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>809</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>810</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>811</ID>
                                              <Description>"Value: 6"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>812</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>813</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>814</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>815</ID>
                                      <Description>"JobLevelMap {Map: 3, ByteProperty → StructProperty}"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>816</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>817</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>818</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>819</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>820</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>821</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>822</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>823</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>824</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>825</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>826</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>827</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>828</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>829</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>830</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>831</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>832</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>833</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>834</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>835</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>836</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>837</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>838</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>839</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>840</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>841</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>842</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>843</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>844</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>845</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>846</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>847</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>848</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>849</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>850</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>851</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>852</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>853</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>854</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>855</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>856</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>857</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>858</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>859</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>860</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>861</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>862</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>863</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>864</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>865</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>866</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>867</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>868</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>869</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>870</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>871</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>872</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>873</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>874</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>875</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>876</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>877</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>878</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>879</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>880</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>881</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>882</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>883</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>884</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>885</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>886</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>887</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>888</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>889</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>890</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>891</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>892</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>893</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>894</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>895</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>896</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>897</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>898</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>899</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>900</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>901</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>902</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>903</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>904</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>905</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>906</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>907</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>908</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>909</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>910</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>911</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>912</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>913</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>914</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>915</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>916</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>917</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>918</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>919</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>920</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>921</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>922</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>923</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>924</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>925</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>926</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>927</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>928</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>929</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>930</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>931</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>932</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>933</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>940</ID>
                              <Description>"[6] (storyline alt)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+30</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>941</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>942</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>943</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>944</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>945</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>946</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>947</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>948</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>949</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>950</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>951</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>952</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>953</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>954</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>955</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>956</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>957</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>958</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>959</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>960</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>961</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>962</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>963</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>964</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>965</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>966</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>967</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>968</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>969</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>970</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>971</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>972</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>973</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>974</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>975</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>976</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>977</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>978</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>979</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>980</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>981</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>982</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>983</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>984</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>985</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>986</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>987</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>988</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>989</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>990</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>991</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>992</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>993</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>994</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>995</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>996</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>997</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>998</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>999</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1000</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1001</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1002</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1003</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1004</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1005</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1006</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1007</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1008</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1009</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1010</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1011</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1012</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1013</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1014</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1015</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1016</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1017</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1018</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1019</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1020</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1021</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1022</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1023</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1024</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1025</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1026</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1027</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1028</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1029</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1030</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1031</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1032</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1033</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1034</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1035</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1036</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1037</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1038</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1039</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1040</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1041</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1042</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1043</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1044</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1045</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1046</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1047</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1048</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1049</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1050</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1051</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1052</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1053</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1054</ID>
                                  <Description>"CostumeLinkGameCharacter"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+690</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1055</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1056</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1057</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1058</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1059</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1060</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1061</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1062</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1063</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1064</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1065</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1066</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1067</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1068</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1069</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1070</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1071</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1072</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1073</ID>
                                  <Description>"LoadedObjects"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1678</ID>
                              <Description>"[7] (Guest / 1st monster)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+38</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1679</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1680</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1681</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1682</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1683</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1684</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1685</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1686</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>1687</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>1688</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1689</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>1690</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>1691</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1692</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1693</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1694</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1695</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1696</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1697</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1698</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1699</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1700</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1701</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1702</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1703</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1704</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1705</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1706</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1707</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1708</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1709</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1710</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1711</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1712</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1713</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1714</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1715</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1716</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1717</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1718</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1719</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1720</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1721</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1722</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1723</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1724</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1725</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1726</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1727</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1728</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1729</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1730</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1731</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1732</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1733</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1734</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1735</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1736</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1737</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1738</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1739</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1740</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1741</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1742</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1743</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1744</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1745</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1746</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1747</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1748</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1749</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1750</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1751</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1752</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1753</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1754</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1755</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1756</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1757</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1758</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1759</ID>
                                  <Description>"BattleCharacterInfo"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+208</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1760</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1761</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1762</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1763</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1764</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1765</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1766</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1767</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1768</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1769</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1770</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1771</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1772</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1773</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1774</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1775</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1776</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1777</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1778</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1779</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1780</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1781</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1782</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1783</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1784</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1785</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1786</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1787</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1788</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1789</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1790</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1791</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1792</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1793</ID>
                                  <Description>"BAG"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EItem_Bag::Bag_Common
1:EItem_Bag::Bag_Equipment
2:EItem_Bag::Bag_Equipment_Equipped
3:EItem_Bag::Bag_Daizinamono
4:EItem_Bag::Bag_Exchange
5:EItem_Bag::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1794</ID>
                                  <Description>"bFriend"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6A9</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1795</ID>
                                  <Description>"bGuest"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AA</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1796</ID>
                                  <Description>"bIsLeaving"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AB</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1797</ID>
                                  <Description>"bIsSubjectOfAttack"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1798</ID>
                                  <Description>"bIsGetExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AD</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1799</ID>
                                  <Description>"bIsMenuDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AE</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1800</ID>
                                  <Description>"bIsPartyTalk"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6AF</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1801</ID>
                                  <Description>"bIsReturnToBag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1802</ID>
                                  <Description>"bIsReturnToBagExceptEquip"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B1</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1803</ID>
                                  <Description>"bIsNotGuestDisp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+6B2</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1804</ID>
                                  <Description>"BattleAI_ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6B4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1805</ID>
                                  <Description>"GambitRate"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6BC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1806</ID>
                                  <Description>"BaseParameterID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1807</ID>
                                  <Description>"TalkSituation"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6C8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1808</ID>
                                  <Description>"FieldDokuDamage"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+6CC</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1809</ID>
                                  <Description>"DokuLeftSec"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1810</ID>
                                  <Description>"FieldExp"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+6D8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1811</ID>
                                  <Description>"LoadedObjects [18 x ObjectProperty (8B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+710</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1812</ID>
                                      <Description>"[0] BP_Friend_GN001_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1813</ID>
                                      <Description>"[1] BP_BattleFriend_GN001_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1814</ID>
                                      <Description>"[2] AM_N015_098_Fl_TurnL180 (AnimMontage)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1815</ID>
                                      <Description>"[3] AM_N015_098_Fl_TurnL90 (AnimMontage)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1816</ID>
                                      <Description>"[4] AM_N015_098_Fl_TurnR180 (AnimMontage)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1817</ID>
                                      <Description>"[5] AM_N015_098_Fl_TurnR90 (AnimMontage)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1818</ID>
                                      <Description>"[6] AM_N015_098_Fl_Walk (AnimMontage)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1819</ID>
                                      <Description>"[7] BP_DamageEffect_Default_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1820</ID>
                                      <Description>"[8] BP_DamageEffect_Critical_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1821</ID>
                                      <Description>"[9] BP_DamageEffect_Tukon_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1822</ID>
                                      <Description>"[10] BP_DamageEffect_Guard_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1823</ID>
                                      <Description>"[11] BP_DamageEffect_Sword_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1824</ID>
                                      <Description>"[12] BP_DamageEffect_Hammer_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1825</ID>
                                      <Description>"[13] BP_DamageEffect_Tue_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1826</ID>
                                      <Description>"[14] BP_DamageEffect_Yari_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1827</ID>
                                      <Description>"[15] BP_DamageEffect_Muti_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1828</ID>
                                      <Description>"[16] BP_DamageEffect_Boomerang_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1829</ID>
                                      <Description>"[17] BP_DamageEffect_Tume_C (BlueprintGeneratedClass)"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1957</ID>
                              <Description>"[8] (monster?)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+40</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1958</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1959</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1960</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1961</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1962</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1963</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1964</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1965</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>1966</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>1967</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1968</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>1969</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>1970</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1971</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1972</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1973</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1974</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1975</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1976</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1977</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1978</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1979</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1980</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1981</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1982</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1983</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1984</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1985</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1986</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1987</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1988</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1989</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1990</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1991</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1992</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1993</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1994</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1995</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1996</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1997</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1998</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1999</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2000</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2001</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2002</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2003</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2004</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2005</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2006</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2007</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2008</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2009</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2010</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2011</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2012</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2013</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2014</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2015</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2016</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2017</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2018</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2019</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2020</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2021</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2022</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2023</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2024</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2025</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2026</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2027</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2028</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2029</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2030</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2031</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2032</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2033</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2034</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2035</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2036</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2037</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2038</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2039</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2040</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2041</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2042</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2043</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2044</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2045</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2046</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2047</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2048</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2049</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2050</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2051</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2052</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2053</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2054</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2055</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2056</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2057</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2058</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2059</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2060</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2061</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2062</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2063</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2064</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2065</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2066</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2067</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2068</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2069</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2070</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2071</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+938</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2078</ID>
                              <Description>"[9] (monster?)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+48</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2079</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2080</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2081</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2082</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2083</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2084</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2085</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2086</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2087</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2088</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2089</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2090</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2091</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2092</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2093</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2094</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2095</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2096</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2097</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2098</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2099</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2100</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2101</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2102</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2103</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2104</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2105</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2106</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2107</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2108</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2109</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2110</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2111</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2112</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2113</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2114</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2115</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2116</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2117</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2118</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2119</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2120</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2121</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2122</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2123</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2124</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2125</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2126</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2127</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2128</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2129</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2130</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2131</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2132</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2133</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2134</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2135</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2136</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2137</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2138</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2139</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2140</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2141</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2142</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2143</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2144</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2145</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2146</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2147</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2148</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2149</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2150</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2151</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2152</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2153</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2154</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2155</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2156</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2157</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2158</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2159</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2160</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2161</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2162</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2163</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2164</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2165</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2166</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2167</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2168</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2169</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2170</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2171</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2172</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2173</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2174</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2175</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2176</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2177</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2178</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2179</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2180</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2181</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2182</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2183</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2184</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2185</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2186</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2187</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2188</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2189</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2190</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2191</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2192</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+938</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2321</ID>
                              <Description>"[10] (monster?)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+50</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2322</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2323</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2324</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2325</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2326</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2327</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2328</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2329</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2330</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2331</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2332</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2333</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2334</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2335</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2336</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2337</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2338</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2339</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2340</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2341</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2342</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2343</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2344</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2345</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2346</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2347</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2348</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2349</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2350</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2351</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2352</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2353</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2354</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2355</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2356</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2357</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2358</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2359</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2360</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2361</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2362</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2363</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2364</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2365</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2366</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2367</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2368</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2369</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2370</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2371</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2372</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2373</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2374</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2375</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2376</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2377</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2378</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2379</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2380</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2381</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2382</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2383</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2384</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2385</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2386</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2387</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2388</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2389</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2390</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2391</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2392</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2393</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2394</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2395</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2396</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2397</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2398</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2399</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2400</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2401</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2402</ID>
                                  <Description>"BattleCharacterInfo"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+208</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2403</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2404</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2405</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2406</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2407</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2408</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2409</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2410</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2411</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2412</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2413</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2414</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2415</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2416</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2417</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2418</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2419</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2420</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2421</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2422</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2423</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2424</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2425</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2426</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2427</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2428</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2429</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2430</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2431</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2432</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2433</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2434</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2435</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2436</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+938</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2437</ID>
                              <Description>"[11] (monster?)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+58</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2438</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2439</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2440</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2441</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2442</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2443</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2444</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2445</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2446</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2447</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2448</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2449</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2450</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2451</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2452</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2453</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2454</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2455</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2456</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2457</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2458</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2459</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2460</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2461</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2462</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2463</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2464</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2465</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2466</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2467</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2468</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2469</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2470</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2471</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2472</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2473</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2474</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2475</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2476</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2477</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2478</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2479</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2480</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2481</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2482</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2483</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2484</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2485</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2486</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2487</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2488</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2489</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2490</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2491</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2492</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2493</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2494</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2495</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2496</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2497</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2498</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2499</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2500</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2501</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2502</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2503</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2504</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2505</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2506</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2507</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2508</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2509</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2510</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2511</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2512</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2513</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2514</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2515</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2516</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2517</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2518</ID>
                                  <Description>"BattleCharacterInfo"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+208</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2519</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2520</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2521</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2522</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2523</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2524</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2525</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2526</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2527</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2528</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2529</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2530</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2531</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2532</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2533</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2534</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2535</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2536</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2537</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2538</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2539</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2540</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2541</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2542</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2543</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2544</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2545</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2546</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2547</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2548</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2549</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2550</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2551</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2552</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+938</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2553</ID>
                              <Description>"[12] (monster?)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+60</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2554</ID>
                                  <Description>"ID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2555</ID>
                                  <Description>"Name"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+30</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2556</ID>
                                  <Description>"DisplayName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2557</ID>
                                  <Description>"ListName"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>String</VariableType>
                                  <Length>256</Length>
                                  <Unicode>1</Unicode>
                                  <CodePage>0</CodePage>
                                  <ZeroTerminate>1</ZeroTerminate>
                                  <Address>+50</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2558</ID>
                                  <Description>"Gender"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+60</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2559</ID>
                                  <Description>"JOB (GameCharacterJob)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+68</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2560</ID>
                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2561</ID>
                                          <Description>"[0] 0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2562</ID>
                                              <Description>"Key: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2563</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2564</ID>
                                          <Description>"[1] 1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2565</ID>
                                              <Description>"Key: 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+0</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2566</ID>
                                              <Description>"Value: 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Byte</VariableType>
                                              <Address>+1</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2567</ID>
                                      <Description>"JobLevelMap"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2568</ID>
                                  <Description>"Might"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+108</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2569</ID>
                                  <Description>"Position"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+109</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2570</ID>
                                  <Description>"Gambit"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10A</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2571</ID>
                                  <Description>"CharacterType"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+10E</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2572</ID>
                                  <Description>"Level"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+110</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2573</ID>
                                  <Description>"HP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+114</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2574</ID>
                                  <Description>"MP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+118</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2575</ID>
                                  <Description>"Tikara"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+11C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2576</ID>
                                  <Description>"Minomamori"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+120</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2577</ID>
                                  <Description>"Subayasa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+124</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2578</ID>
                                  <Description>"Kiyousa"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+128</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2579</ID>
                                  <Description>"Miryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+12C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2580</ID>
                                  <Description>"KougekiMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+130</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2581</ID>
                                  <Description>"KaifukuMaryoku"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+134</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2582</ID>
                                  <Description>"MaxHP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+138</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2583</ID>
                                  <Description>"MaxMP"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+13C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2584</ID>
                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+140</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2585</ID>
                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+144</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2586</ID>
                                  <Description>"Exp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+148</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2587</ID>
                                  <Description>"NameIdentifier"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2588</ID>
                                  <Description>"TroopIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+150</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2589</ID>
                                  <Description>"GroupIndex"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+154</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2590</ID>
                                  <Description>"DropExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+158</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2591</ID>
                                  <Description>"DropJobExp"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+15C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2592</ID>
                                  <Description>"DropGold"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+160</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2593</ID>
                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+1F8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2594</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2595</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2596</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2597</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2598</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2599</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2600</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2601</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2602</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2603</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2604</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2605</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2606</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2607</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2608</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2609</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2610</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2611</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2612</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2613</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2614</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2615</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2616</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2617</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2618</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2619</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2620</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2621</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2622</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2623</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2624</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2625</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2626</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2627</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2628</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2629</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2630</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2631</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2632</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2633</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2634</ID>
                                  <Description>"BattleCharacterInfo"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+208</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2635</ID>
                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+210</Address>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2636</ID>
                                      <Description>"ActionResult.ResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2637</ID>
                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2638</ID>
                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>8 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2639</ID>
                                      <Description>"ActionResult.UseMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2640</ID>
                                      <Description>"ActionResult.UseGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2641</ID>
                                      <Description>"ActionResult.AllActionModules"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2642</ID>
                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2643</ID>
                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2644</ID>
                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2645</ID>
                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+178</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2646</ID>
                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+180</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2647</ID>
                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2648</ID>
                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+185</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2649</ID>
                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+188</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2650</ID>
                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2651</ID>
                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2652</ID>
                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2653</ID>
                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2654</ID>
                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2655</ID>
                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2656</ID>
                                      <Description>"ActionResult.bBunsin"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2657</ID>
                                      <Description>"ActionResult.bZenmetu"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1D3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2658</ID>
                                      <Description>"CurrentHitGroupCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2659</ID>
                                      <Description>"CurrentActionHitRequestCount"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2660</ID>
                                      <Description>"bKoukaDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2661</ID>
                                      <Description>"bPopupBalloonDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2662</ID>
                                      <Description>"bPendingDead"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2663</ID>
                                      <Description>"AttackTargetInfos"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2664</ID>
                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2665</ID>
                                  <Description>"OddEffectExecHolder"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+430</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2666</ID>
                                  <Description>"BurstPointControl"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+438</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2667</ID>
                                  <Description>"KokoroEquipmentController"</Description>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+440</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2668</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+938</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1079</ID>
                      <Description>"FieldAttackMaxDamageRate"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+38</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1084</ID>
                      <Description>"MonsterFieldParameter"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+A8</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1085</ID>
                          <Description>"Monster_RunSpeed_SlightlyFast"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+28</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1086</ID>
                          <Description>"Monster_RunSpeed_Fast"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+2C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1087</ID>
                          <Description>"Monster_RunSpeed_VeryFast"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+30</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1088</ID>
                          <Description>"Monster_RunSpeed_SuperFast"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+34</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1089</ID>
                          <Description>"Monster_RunSpeed_SlightlySlow"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+38</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1090</ID>
                          <Description>"Monster_RunSpeed_Slow"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+3C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1091</ID>
                          <Description>"Monster_RunSpeed_VerySlow"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+40</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1092</ID>
                          <Description>"Monster_RunSpeed_SuperSlow"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+44</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1093</ID>
                          <Description>"Monster_AccidentWaitTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+48</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1094</ID>
                          <Description>"Monster_WaitIntervalMin"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+4C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1095</ID>
                          <Description>"Monster_WaitIntervalMax"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+50</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1096</ID>
                          <Description>"Monster_FewWaitIntervalMax"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+54</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1097</ID>
                          <Description>"Monster_SensorIgnoreTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+58</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1098</ID>
                          <Description>"Monster_NoticeWaitTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+5C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1099</ID>
                          <Description>"Monster_ThreatingWaitTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+60</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1100</ID>
                          <Description>"Monster_LostSearchTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+64</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1101</ID>
                          <Description>"Monster_LostWeitTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+68</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1102</ID>
                          <Description>"Monster_EscapeTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+6C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1103</ID>
                          <Description>"Monster_NotEncountTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+70</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1104</ID>
                          <Description>"Monster_NotFieldAttackTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+74</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1105</ID>
                          <Description>"Monster_MonsterHiddenLange"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+78</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1106</ID>
                          <Description>"Monster_TurnThreshold"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+7C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1107</ID>
                          <Description>"Monster_ForwardAngle"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+80</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1108</ID>
                          <Description>"Monster_ClashKnockBackTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+84</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1109</ID>
                          <Description>"Monster_MaxPop"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+88</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1110</ID>
                          <Description>"Monster_MaxViewPop"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+8C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1111</ID>
                          <Description>"Monster_GeneratorActiveRadius"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+90</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1112</ID>
                          <Description>"Monster_GeneratorActiveThresholdWidth"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+94</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1113</ID>
                          <Description>"Monster_PlayerOffsetRadius"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+98</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1114</ID>
                          <Description>"Monster_PlayerMinOffsetRadius"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+9C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1115</ID>
                          <Description>"Monster_MapchangeDeleteRadius"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+A0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1116</ID>
                          <Description>"Monster_PlayerLookRadius"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+A4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1117</ID>
                          <Description>"Monster_FieldAttackHitStopPreset"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+A8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1118</ID>
                          <Description>"bMonster_FieldAttackHitStopCritical"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+A9</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1119</ID>
                          <Description>"Monster_FieldAttackSoomDeadLvDiff"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+AC</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1120</ID>
                          <Description>"Monster_FieldAttackBehindCorrection"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+B0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1121</ID>
                          <Description>"Monster_FieldAttackWinRewardRate"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+B4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1122</ID>
                          <Description>"Monster_FieldEncountIntervalTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+B8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1123</ID>
                          <Description>"Monster_FieldAttackIntervalTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+BC</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1124</ID>
                          <Description>"Monster_FieldAttackEffectStopIntervalTime"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+C0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1125</ID>
                          <Description>"State_ToherosuAdditionValue"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+F0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1126</ID>
                          <Description>"State_ToherosuMaxSec"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+F4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1127</ID>
                          <Description>"State_ShipToherosuSecRate"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+F8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1128</ID>
                          <Description>"State_ToherosuRange"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+FC</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1129</ID>
                          <Description>"State_SeisuiMaxSec"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+100</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1130</ID>
                          <Description>"State_ShipSeisuiSecRate"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+104</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
                <CheatEntry>
                  <ID>1135</ID>
                  <Description>"LocalPlayers / misc"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+38</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1136</ID>
                      <Description>"[0]"</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>1137</ID>
                          <Description>"PlayerController"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1138</ID>
                              <Description>"Character"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+260</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1139</ID>
                                  <Description>"CharacterMovement"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+288</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1140</ID>
                                      <Description>"PrimaryComponentTick (ActorComponentTickFunction)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+30</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1141</ID>
                                          <Description>"TickGroup"</Description>
                                          <DropDownList DisplayValueAsItem="1">0:TG_PrePhysics
1:TG_StartPhysics
2:TG_DuringPhysics
3:TG_EndPhysics
4:TG_PostPhysics
5:TG_PostUpdateWork
6:TG_LastDemotable
7:TG_NewlySpawned
8:TG_MAX
</DropDownList>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1142</ID>
                                          <Description>"EndTickGroup"</Description>
                                          <DropDownListLink>TickGroup</DropDownListLink>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+9</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1143</ID>
                                          <Description>"bTickEvenWhenPaused"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1144</ID>
                                          <Description>"bCanEverTick"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1145</ID>
                                          <Description>"bStartWithTickEnabled"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1146</ID>
                                          <Description>"bAllowTickOnDedicatedServer"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1147</ID>
                                          <Description>"TickInterval"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+C</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1148</ID>
                                      <Description>"ComponentTags"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1149</ID>
                                      <Description>"AssetUserData"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1150</ID>
                                      <Description>"UCSSerializationIndex"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1151</ID>
                                      <Description>"bNetAddressable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1152</ID>
                                      <Description>"bReplicates"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1153</ID>
                                      <Description>"bAutoActivate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+89</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1154</ID>
                                      <Description>"bIsActive"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+8A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1155</ID>
                                      <Description>"bEditableWhenInherited"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+8A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1156</ID>
                                      <Description>"bCanEverAffectNavigation"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+8A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1157</ID>
                                      <Description>"bIsEditorOnly"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+8A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1158</ID>
                                      <Description>"CreationMethod"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1159</ID>
                                      <Description>"UCSModifiedProperties"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1160</ID>
                                      <Description>"UpdatedComponent"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1161</ID>
                                      <Description>"UpdatedPrimitive"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1162</ID>
                                      <Description>"Velocity (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+C4</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1163</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1164</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1165</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1166</ID>
                                      <Description>"PlaneConstraintNormal (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+D0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1167</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1168</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1169</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1170</ID>
                                      <Description>"PlaneConstraintOrigin (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+DC</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1171</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1172</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1173</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1174</ID>
                                      <Description>"bUpdateOnlyIfRendered"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1175</ID>
                                      <Description>"bAutoUpdateTickRegistration"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1176</ID>
                                      <Description>"bTickBeforeOwner"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1177</ID>
                                      <Description>"bAutoRegisterUpdatedComponent"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1178</ID>
                                      <Description>"bConstrainToPlane"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1179</ID>
                                      <Description>"bSnapToPlaneAtStart"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1180</ID>
                                      <Description>"bAutoRegisterPhysicsVolumeUpdates"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1181</ID>
                                      <Description>"bComponentShouldUpdatePhysicsVolume"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1182</ID>
                                      <Description>"PlaneConstraintAxisSetting"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+EB</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1183</ID>
                                      <Description>"NavAgentProps (NavAgentProperties)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+F0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1184</ID>
                                          <Description>"bCanCrouch"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1185</ID>
                                          <Description>"bCanJump"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1186</ID>
                                          <Description>"bCanWalk"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1187</ID>
                                          <Description>"bCanSwim"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1188</ID>
                                          <Description>"bCanFly"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1189</ID>
                                          <Description>"AgentRadius"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1190</ID>
                                          <Description>"AgentHeight"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1191</ID>
                                          <Description>"AgentStepHeight"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1192</ID>
                                          <Description>"NavWalkingSearchHeightScale"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+10</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1193</ID>
                                          <Description>"PreferredNavData.AssetPathName"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+18</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1194</ID>
                                          <Description>"PreferredNavData.SubPathString"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>String</VariableType>
                                          <Length>256</Length>
                                          <Unicode>1</Unicode>
                                          <CodePage>0</CodePage>
                                          <ZeroTerminate>1</ZeroTerminate>
                                          <Address>+20</Address>
                                          <Offsets>
                                            <Offset>0</Offset>
                                          </Offsets>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1195</ID>
                                      <Description>"FixedPathBrakingDistance"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+120</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1196</ID>
                                      <Description>"bUpdateNavAgentWithOwnersCollision"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+124</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1197</ID>
                                      <Description>"bUseAccelerationForPaths"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+124</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1198</ID>
                                      <Description>"bUseFixedBrakingDistanceForPaths"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+124</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1199</ID>
                                      <Description>"MovementState (MovementProperties)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+125</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1200</ID>
                                          <Description>"bCanCrouch"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1201</ID>
                                          <Description>"bCanJump"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1202</ID>
                                          <Description>"bCanWalk"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1203</ID>
                                          <Description>"bCanSwim"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1204</ID>
                                          <Description>"bCanFly"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1205</ID>
                                      <Description>"PathFollowingComp"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+128</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1206</ID>
                                      <Description>"PawnOwner"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1207</ID>
                                      <Description>"CharacterOwner"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1208</ID>
                                      <Description>"GravityScale"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+150</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1209</ID>
                                      <Description>"MaxStepHeight"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+154</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1210</ID>
                                      <Description>"JumpZVelocity"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1211</ID>
                                      <Description>"JumpOffJumpZFactor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+15C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1212</ID>
                                      <Description>"WalkableFloorAngle"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+160</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1213</ID>
                                      <Description>"WalkableFloorZ"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+164</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1214</ID>
                                      <Description>"MovementMode"</Description>
                                      <DropDownList DisplayValueAsItem="1">0:MOVE_None
1:MOVE_Walking
2:MOVE_NavWalking
3:MOVE_Falling
4:MOVE_Swimming
5:MOVE_Flying
6:MOVE_Custom
7:MOVE_MAX
</DropDownList>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+168</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1215</ID>
                                      <Description>"CustomMovementMode"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+169</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1216</ID>
                                      <Description>"NetworkSmoothingMode"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+16A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1217</ID>
                                      <Description>"GroundFriction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+16C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1218</ID>
                                      <Description>"MaxWalkSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+18C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1219</ID>
                                      <Description>"MaxWalkSpeedCrouched"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+190</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1220</ID>
                                      <Description>"MaxSwimSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+194</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1221</ID>
                                      <Description>"MaxFlySpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+198</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1222</ID>
                                      <Description>"MaxCustomMovementSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+19C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1223</ID>
                                      <Description>"MaxAcceleration"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1A0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1224</ID>
                                      <Description>"MinAnalogWalkSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1A4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1225</ID>
                                      <Description>"BrakingFrictionFactor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1226</ID>
                                      <Description>"BrakingFriction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1227</ID>
                                      <Description>"BrakingSubStepTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1228</ID>
                                      <Description>"BrakingDecelerationWalking"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1229</ID>
                                      <Description>"BrakingDecelerationFalling"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1230</ID>
                                      <Description>"BrakingDecelerationSwimming"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1231</ID>
                                      <Description>"BrakingDecelerationFlying"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1232</ID>
                                      <Description>"AirControl"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1233</ID>
                                      <Description>"AirControlBoostMultiplier"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1234</ID>
                                      <Description>"AirControlBoostVelocityThreshold"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1CC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1235</ID>
                                      <Description>"FallingLateralFriction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1236</ID>
                                      <Description>"CrouchedHalfHeight"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1D4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1237</ID>
                                      <Description>"Buoyancy"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1D8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1238</ID>
                                      <Description>"PerchRadiusThreshold"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1DC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1239</ID>
                                      <Description>"PerchAdditionalHeight"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1E0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1240</ID>
                                      <Description>"RotationRate (Rotator)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1E4</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1241</ID>
                                          <Description>"Pitch"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1242</ID>
                                          <Description>"Yaw"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1243</ID>
                                          <Description>"Roll"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1244</ID>
                                      <Description>"bUseSeparateBrakingFriction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1245</ID>
                                      <Description>"bApplyGravityWhileJumping"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1246</ID>
                                      <Description>"bUseControllerDesiredRotation"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1247</ID>
                                      <Description>"bOrientRotationToMovement"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1248</ID>
                                      <Description>"bSweepWhileNavWalking"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1249</ID>
                                      <Description>"bMovementInProgress"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1250</ID>
                                      <Description>"bEnableScopedMovementUpdates"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1251</ID>
                                      <Description>"bEnableServerDualMoveScopedMovementUpdates"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1252</ID>
                                      <Description>"bForceMaxAccel"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1253</ID>
                                      <Description>"bRunPhysicsWithNoController"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1254</ID>
                                      <Description>"bForceNextFloorCheck"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1255</ID>
                                      <Description>"bShrinkProxyCapsule"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1256</ID>
                                      <Description>"bCanWalkOffLedges"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1257</ID>
                                      <Description>"bCanWalkOffLedgesWhenCrouching"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F1</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1258</ID>
                                      <Description>"bNetworkSkipProxyPredictionOnNetUpdate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1259</ID>
                                      <Description>"bNetworkAlwaysReplicateTransformUpdateTimestamp"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1260</ID>
                                      <Description>"bDeferUpdateMoveComponent"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1261</ID>
                                      <Description>"bEnablePhysicsInteraction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1262</ID>
                                      <Description>"bTouchForceScaledToMass"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1263</ID>
                                      <Description>"bPushForceScaledToMass"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1264</ID>
                                      <Description>"bPushForceUsingZOffset"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F2</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1265</ID>
                                      <Description>"bScalePushForceToVelocity"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+1F3</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1266</ID>
                                      <Description>"MaxOutOfWaterStepHeight"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+200</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1267</ID>
                                      <Description>"OutofWaterZ"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+204</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1268</ID>
                                      <Description>"Mass"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+208</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1269</ID>
                                      <Description>"StandingDownwardForceScale"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+20C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1270</ID>
                                      <Description>"InitialPushForceFactor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+210</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1271</ID>
                                      <Description>"PushForceFactor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+214</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>240</ID>
                                      <Description>"PushForcePointZOffsetFactor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+218</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>241</ID>
                                      <Description>"TouchForceFactor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+21C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>242</ID>
                                      <Description>"MinTouchForce"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+220</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>243</ID>
                                      <Description>"MaxTouchForce"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+224</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>244</ID>
                                      <Description>"RepulsionForce"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+228</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1272</ID>
                                      <Description>"Acceleration (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+22C</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1273</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1274</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1275</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1276</ID>
                                      <Description>"LastUpdateRotation (Quat)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+240</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1277</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1278</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1279</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1280</ID>
                                          <Description>"W"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+C</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1281</ID>
                                      <Description>"LastUpdateLocation (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+250</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1282</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1283</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1284</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1285</ID>
                                      <Description>"LastUpdateVelocity (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+25C</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1286</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1287</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1288</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1289</ID>
                                      <Description>"ServerLastTransformUpdateTimeStamp"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+268</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1290</ID>
                                      <Description>"ServerLastClientGoodMoveAckTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+26C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1291</ID>
                                      <Description>"ServerLastClientAdjustmentTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+270</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1292</ID>
                                      <Description>"PendingImpulseToApply (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+274</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1293</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1294</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1295</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1296</ID>
                                      <Description>"PendingForceToApply (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+280</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1297</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1298</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1299</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1300</ID>
                                      <Description>"AnalogInputModifier"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+28C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1301</ID>
                                      <Description>"MaxSimulationTimeStep"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+29C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1302</ID>
                                      <Description>"MaxSimulationIterations"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+2A0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1303</ID>
                                      <Description>"MaxJumpApexAttemptsPerSimulation"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+2A4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1304</ID>
                                      <Description>"MaxDepenetrationWithGeometry"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1305</ID>
                                      <Description>"MaxDepenetrationWithGeometryAsProxy"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1306</ID>
                                      <Description>"MaxDepenetrationWithPawn"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1307</ID>
                                      <Description>"MaxDepenetrationWithPawnAsProxy"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1308</ID>
                                      <Description>"NetworkSimulatedSmoothLocationTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1309</ID>
                                      <Description>"NetworkSimulatedSmoothRotationTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1310</ID>
                                      <Description>"ListenServerNetworkSimulatedSmoothLocationTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1311</ID>
                                      <Description>"ListenServerNetworkSimulatedSmoothRotationTime"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1312</ID>
                                      <Description>"NetProxyShrinkRadius"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1313</ID>
                                      <Description>"NetProxyShrinkHalfHeight"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2CC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1314</ID>
                                      <Description>"NetworkMaxSmoothUpdateDistance"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1315</ID>
                                      <Description>"NetworkNoSmoothUpdateDistance"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2D4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1316</ID>
                                      <Description>"NetworkMinTimeBetweenClientAckGoodMoves"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2D8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1317</ID>
                                      <Description>"NetworkMinTimeBetweenClientAdjustments"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2DC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1318</ID>
                                      <Description>"NetworkMinTimeBetweenClientAdjustmentsLargeCorrection"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2E0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1319</ID>
                                      <Description>"NetworkLargeClientCorrectionDistance"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2E4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1320</ID>
                                      <Description>"LedgeCheckThreshold"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1321</ID>
                                      <Description>"JumpOutOfWaterPitch"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+2EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1322</ID>
                                      <Description>"CurrentFloor (FindFloorResult)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+2F0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1323</ID>
                                          <Description>"bBlockingHit"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1324</ID>
                                          <Description>"bWalkableFloor"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1325</ID>
                                          <Description>"bLineTrace"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1326</ID>
                                          <Description>"FloorDist"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1327</ID>
                                          <Description>"LineDist"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1328</ID>
                                          <Description>"HitResult.FaceIndex"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1329</ID>
                                          <Description>"HitResult.Time"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+10</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1330</ID>
                                          <Description>"HitResult.Distance"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+14</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1331</ID>
                                          <Description>"HitResult.Location.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+18</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1332</ID>
                                          <Description>"HitResult.Location.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+1C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1333</ID>
                                          <Description>"HitResult.Location.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+20</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1334</ID>
                                          <Description>"HitResult.ImpactPoint.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+24</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1335</ID>
                                          <Description>"HitResult.ImpactPoint.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1336</ID>
                                          <Description>"HitResult.ImpactPoint.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+2C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1337</ID>
                                          <Description>"HitResult.Normal.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+30</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1338</ID>
                                          <Description>"HitResult.Normal.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+34</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1339</ID>
                                          <Description>"HitResult.Normal.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+38</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1340</ID>
                                          <Description>"HitResult.ImpactNormal.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+3C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1341</ID>
                                          <Description>"HitResult.ImpactNormal.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+40</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1342</ID>
                                          <Description>"HitResult.ImpactNormal.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+44</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1343</ID>
                                          <Description>"HitResult.TraceStart.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+48</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1344</ID>
                                          <Description>"HitResult.TraceStart.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1345</ID>
                                          <Description>"HitResult.TraceStart.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+50</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1346</ID>
                                          <Description>"HitResult.TraceEnd.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+54</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1347</ID>
                                          <Description>"HitResult.TraceEnd.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+58</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1348</ID>
                                          <Description>"HitResult.TraceEnd.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+5C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1349</ID>
                                          <Description>"HitResult.PenetrationDepth"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+60</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1350</ID>
                                          <Description>"HitResult.Item"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+64</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1351</ID>
                                          <Description>"HitResult.ElementIndex"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+68</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1352</ID>
                                          <Description>"HitResult.bBlockingHit"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+69</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1353</ID>
                                          <Description>"HitResult.bStartPenetrating"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+69</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1354</ID>
                                          <Description>"HitResult.PhysMaterial"</Description>
                                          <ShowAsHex>1</ShowAsHex>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+6C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1355</ID>
                                          <Description>"HitResult.Actor"</Description>
                                          <ShowAsHex>1</ShowAsHex>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+74</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1356</ID>
                                          <Description>"HitResult.Component"</Description>
                                          <ShowAsHex>1</ShowAsHex>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+7C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1357</ID>
                                          <Description>"HitResult.BoneName"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+84</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1358</ID>
                                          <Description>"HitResult.MyBoneName"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+8C</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1359</ID>
                                      <Description>"DefaultLandMovementMode"</Description>
                                      <DropDownListLink>MovementMode</DropDownListLink>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+384</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1360</ID>
                                      <Description>"DefaultWaterMovementMode"</Description>
                                      <DropDownListLink>MovementMode</DropDownListLink>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+385</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1361</ID>
                                      <Description>"GroundMovementMode"</Description>
                                      <DropDownListLink>MovementMode</DropDownListLink>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+386</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1362</ID>
                                      <Description>"bMaintainHorizontalGroundVelocity"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1363</ID>
                                      <Description>"bImpartBaseVelocityX"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1364</ID>
                                      <Description>"bImpartBaseVelocityY"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1365</ID>
                                      <Description>"bImpartBaseVelocityZ"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1366</ID>
                                      <Description>"bImpartBaseAngularVelocity"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1367</ID>
                                      <Description>"bJustTeleported"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1368</ID>
                                      <Description>"bNetworkUpdateReceived"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1369</ID>
                                      <Description>"bNetworkMovementModeChanged"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+387</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1370</ID>
                                      <Description>"bIgnoreClientMovementErrorChecksAndCorrection"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1371</ID>
                                      <Description>"bServerAcceptClientAuthoritativePosition"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1372</ID>
                                      <Description>"bNotifyApex"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1373</ID>
                                      <Description>"bCheatFlying"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1374</ID>
                                      <Description>"bWantsToCrouch"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1375</ID>
                                      <Description>"bCrouchMaintainsBaseLocation"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1376</ID>
                                      <Description>"bIgnoreBaseRotation"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1377</ID>
                                      <Description>"bFastAttachedMove"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+388</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1378</ID>
                                      <Description>"bAlwaysCheckFloor"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1379</ID>
                                      <Description>"bUseFlatBaseForFloorChecks"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1380</ID>
                                      <Description>"bPerformingJumpOff"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1381</ID>
                                      <Description>"bWantsToLeaveNavWalking"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1382</ID>
                                      <Description>"bUseRVOAvoidance"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>4</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1383</ID>
                                      <Description>"bRequestedMoveUseAcceleration"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>5</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1384</ID>
                                      <Description>"bWasSimulatingRootMotion"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+389</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1385</ID>
                                      <Description>"bAllowPhysicsRotationDuringAnimRootMotion"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>0</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+38A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1386</ID>
                                      <Description>"bHasRequestedVelocity"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>1</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+38A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1387</ID>
                                      <Description>"bRequestedMoveWithMaxSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>2</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+38A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1388</ID>
                                      <Description>"bWasAvoidanceUpdated"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>3</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+38A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1389</ID>
                                      <Description>"bProjectNavMeshWalking"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>6</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+38A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1390</ID>
                                      <Description>"bProjectNavMeshOnBothWorldChannels"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Binary</VariableType>
                                      <BitStart>7</BitStart>
                                      <BitLength>1</BitLength>
                                      <ShowAsBinary>0</ShowAsBinary>
                                      <Address>+38A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1391</ID>
                                      <Description>"AvoidanceConsiderationRadius"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+39C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1392</ID>
                                      <Description>"RequestedVelocity (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+3A0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1393</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1394</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1395</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1396</ID>
                                      <Description>"AvoidanceUID"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+3AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1397</ID>
                                      <Description>"AvoidanceGroup (NavAvoidanceMask)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+3B0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1398</ID>
                                          <Description>"bGroup0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1399</ID>
                                          <Description>"bGroup1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1400</ID>
                                          <Description>"bGroup2"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1401</ID>
                                          <Description>"bGroup3"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1402</ID>
                                          <Description>"bGroup4"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1403</ID>
                                          <Description>"bGroup5"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1404</ID>
                                          <Description>"bGroup6"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>378</ID>
                                          <Description>"bGroup7"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>379</ID>
                                          <Description>"bGroup8"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>380</ID>
                                          <Description>"bGroup9"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>381</ID>
                                          <Description>"bGroup10"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>382</ID>
                                          <Description>"bGroup11"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>383</ID>
                                          <Description>"bGroup12"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1405</ID>
                                          <Description>"bGroup13"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1406</ID>
                                          <Description>"bGroup14"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1407</ID>
                                          <Description>"bGroup15"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1408</ID>
                                          <Description>"bGroup16"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1409</ID>
                                          <Description>"bGroup17"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1410</ID>
                                          <Description>"bGroup18"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1411</ID>
                                          <Description>"bGroup19"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1412</ID>
                                          <Description>"bGroup20"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1413</ID>
                                          <Description>"bGroup21"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1414</ID>
                                          <Description>"bGroup22"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1415</ID>
                                          <Description>"bGroup23"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1416</ID>
                                          <Description>"bGroup24"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1417</ID>
                                          <Description>"bGroup25"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1418</ID>
                                          <Description>"bGroup26"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1419</ID>
                                          <Description>"bGroup27"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1420</ID>
                                          <Description>"bGroup28"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1421</ID>
                                          <Description>"bGroup29"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1422</ID>
                                          <Description>"bGroup30"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1423</ID>
                                          <Description>"bGroup31"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1424</ID>
                                      <Description>"GroupsToAvoid (NavAvoidanceMask)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+3B4</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1425</ID>
                                          <Description>"bGroup0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1426</ID>
                                          <Description>"bGroup1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1427</ID>
                                          <Description>"bGroup2"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1428</ID>
                                          <Description>"bGroup3"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1429</ID>
                                          <Description>"bGroup4"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1430</ID>
                                          <Description>"bGroup5"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1431</ID>
                                          <Description>"bGroup6"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1432</ID>
                                          <Description>"bGroup7"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1433</ID>
                                          <Description>"bGroup8"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1434</ID>
                                          <Description>"bGroup9"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1435</ID>
                                          <Description>"bGroup10"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1436</ID>
                                          <Description>"bGroup11"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1437</ID>
                                          <Description>"bGroup12"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1438</ID>
                                          <Description>"bGroup13"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1439</ID>
                                          <Description>"bGroup14"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1440</ID>
                                          <Description>"bGroup15"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1441</ID>
                                          <Description>"bGroup16"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1442</ID>
                                          <Description>"bGroup17"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1443</ID>
                                          <Description>"bGroup18"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1444</ID>
                                          <Description>"bGroup19"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1445</ID>
                                          <Description>"bGroup20"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1446</ID>
                                          <Description>"bGroup21"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1447</ID>
                                          <Description>"bGroup22"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1448</ID>
                                          <Description>"bGroup23"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1449</ID>
                                          <Description>"bGroup24"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1450</ID>
                                          <Description>"bGroup25"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1451</ID>
                                          <Description>"bGroup26"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1452</ID>
                                          <Description>"bGroup27"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1453</ID>
                                          <Description>"bGroup28"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1454</ID>
                                          <Description>"bGroup29"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1455</ID>
                                          <Description>"bGroup30"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1456</ID>
                                          <Description>"bGroup31"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1457</ID>
                                      <Description>"GroupsToIgnore (NavAvoidanceMask)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+3B8</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1458</ID>
                                          <Description>"bGroup0"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1459</ID>
                                          <Description>"bGroup1"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1460</ID>
                                          <Description>"bGroup2"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1461</ID>
                                          <Description>"bGroup3"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1462</ID>
                                          <Description>"bGroup4"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1463</ID>
                                          <Description>"bGroup5"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1464</ID>
                                          <Description>"bGroup6"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1465</ID>
                                          <Description>"bGroup7"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1466</ID>
                                          <Description>"bGroup8"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1467</ID>
                                          <Description>"bGroup9"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1468</ID>
                                          <Description>"bGroup10"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1469</ID>
                                          <Description>"bGroup11"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1470</ID>
                                          <Description>"bGroup12"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1471</ID>
                                          <Description>"bGroup13"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1472</ID>
                                          <Description>"bGroup14"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1473</ID>
                                          <Description>"bGroup15"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1474</ID>
                                          <Description>"bGroup16"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1475</ID>
                                          <Description>"bGroup17"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1476</ID>
                                          <Description>"bGroup18"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1477</ID>
                                          <Description>"bGroup19"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1478</ID>
                                          <Description>"bGroup20"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1479</ID>
                                          <Description>"bGroup21"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1480</ID>
                                          <Description>"bGroup22"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1481</ID>
                                          <Description>"bGroup23"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1482</ID>
                                          <Description>"bGroup24"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1483</ID>
                                          <Description>"bGroup25"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1484</ID>
                                          <Description>"bGroup26"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1485</ID>
                                          <Description>"bGroup27"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1486</ID>
                                          <Description>"bGroup28"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>4</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1487</ID>
                                          <Description>"bGroup29"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>5</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1488</ID>
                                          <Description>"bGroup30"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>6</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1489</ID>
                                          <Description>"bGroup31"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>7</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+3</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1490</ID>
                                      <Description>"AvoidanceWeight"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+3BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1491</ID>
                                      <Description>"PendingLaunchVelocity (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+3C0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1492</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1493</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1494</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1495</ID>
                                      <Description>"NavMeshProjectionInterval"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+470</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1496</ID>
                                      <Description>"NavMeshProjectionTimer"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+474</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1497</ID>
                                      <Description>"NavMeshProjectionInterpSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+478</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1498</ID>
                                      <Description>"NavMeshProjectionHeightScaleUp"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+47C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1499</ID>
                                      <Description>"NavMeshProjectionHeightScaleDown"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+480</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1500</ID>
                                      <Description>"NavWalkingFloorDistTolerance"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+484</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1501</ID>
                                      <Description>"PostPhysicsTickFunction (CharacterMovementComponentPostPhysicsTickFunction)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+488</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1502</ID>
                                          <Description>"TickGroup"</Description>
                                          <DropDownListLink>TickGroup</DropDownListLink>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1503</ID>
                                          <Description>"EndTickGroup"</Description>
                                          <DropDownListLink>TickGroup</DropDownListLink>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+9</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1504</ID>
                                          <Description>"bTickEvenWhenPaused"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1505</ID>
                                          <Description>"bCanEverTick"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1506</ID>
                                          <Description>"bStartWithTickEnabled"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1507</ID>
                                          <Description>"bAllowTickOnDedicatedServer"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+A</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1508</ID>
                                          <Description>"TickInterval"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+C</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1509</ID>
                                      <Description>"MinTimeBetweenTimeStampResets"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+4D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1510</ID>
                                      <Description>"CurrentRootMotion (RootMotionSourceGroup)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+980</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1511</ID>
                                          <Description>"bHasAdditiveSources"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1512</ID>
                                          <Description>"bHasOverrideSources"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1513</ID>
                                          <Description>"bHasOverrideSourcesWithIgnoreZAccumulate"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1514</ID>
                                          <Description>"bIsAdditiveVelocityApplied"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1515</ID>
                                          <Description>"LastAccumulatedSettings.Flags"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+29</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1516</ID>
                                          <Description>"LastPreAdditiveVelocity.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+2C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1517</ID>
                                          <Description>"LastPreAdditiveVelocity.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+30</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1518</ID>
                                          <Description>"LastPreAdditiveVelocity.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+34</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1519</ID>
                                      <Description>"ServerCorrectionRootMotion (RootMotionSourceGroup)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+9B8</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1520</ID>
                                          <Description>"bHasAdditiveSources"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>0</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1521</ID>
                                          <Description>"bHasOverrideSources"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>1</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1522</ID>
                                          <Description>"bHasOverrideSourcesWithIgnoreZAccumulate"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>2</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1523</ID>
                                          <Description>"bIsAdditiveVelocityApplied"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Binary</VariableType>
                                          <BitStart>3</BitStart>
                                          <BitLength>1</BitLength>
                                          <ShowAsBinary>0</ShowAsBinary>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1524</ID>
                                          <Description>"LastAccumulatedSettings.Flags"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+29</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1525</ID>
                                          <Description>"LastPreAdditiveVelocity.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+2C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1526</ID>
                                          <Description>"LastPreAdditiveVelocity.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+30</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1527</ID>
                                          <Description>"LastPreAdditiveVelocity.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+34</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1528</ID>
                                      <Description>"RootMotionParams (RootMotionMovementParams)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+A80</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1529</ID>
                                          <Description>"bHasRootMotion"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1530</ID>
                                          <Description>"BlendWeight"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1531</ID>
                                          <Description>"RootMotionTransform.Rotation.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+10</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1532</ID>
                                          <Description>"RootMotionTransform.Rotation.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+14</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1533</ID>
                                          <Description>"RootMotionTransform.Rotation.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+18</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1534</ID>
                                          <Description>"RootMotionTransform.Rotation.W"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+1C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1535</ID>
                                          <Description>"RootMotionTransform.Translation.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+20</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1536</ID>
                                          <Description>"RootMotionTransform.Translation.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+24</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1537</ID>
                                          <Description>"RootMotionTransform.Translation.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>517</ID>
                                          <Description>"RootMotionTransform.Scale3D.X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+30</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>518</ID>
                                          <Description>"RootMotionTransform.Scale3D.Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+34</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>519</ID>
                                          <Description>"RootMotionTransform.Scale3D.Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+38</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>520</ID>
                                      <Description>"AnimRootMotionVelocity (Vector)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+AC0</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>521</ID>
                                          <Description>"X"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>522</ID>
                                          <Description>"Y"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1538</ID>
                                          <Description>"Z"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1539</ID>
                                      <Description>"MaxMoveSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+B08</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1540</ID>
                                      <Description>"bIgnoreRotationYaw"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+B0C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1541</ID>
                                      <Description>"bIgnoreRotationPitch"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+B0D</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1542</ID>
                                      <Description>"bIgnoreRotationRoll"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+B0E</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1543</ID>
                                      <Description>"bSafeNavConstrainedDuringMove"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+B0F</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1544</ID>
                                      <Description>"BattleMaxTurnSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+B10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1545</ID>
                                      <Description>"bIsIgnoreMovementDisabledCheckCollision"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+BD0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1546</ID>
                                      <Description>"bOrientRotationToBattleMovement"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+F00</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1547</ID>
                                      <Description>"bSlipEnable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1010</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1548</ID>
                                      <Description>"bSlip"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1011</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1549</ID>
                                      <Description>"SlipDumpRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1014</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1550</ID>
                                      <Description>"SlipVelocityRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1018</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1551</ID>
                                      <Description>"SlipMaxSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+101C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1552</ID>
                                      <Description>"SlipSlopeStartAngle"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1020</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1553</ID>
                                      <Description>"SlipSlopeSpeedRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1024</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1554</ID>
                                      <Description>"SlipFallingSec"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1028</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1555</ID>
                                      <Description>"bNoFloorSlipDisable"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+102C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1556</ID>
                                      <Description>"NoFloorSlipCheckOffset"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1030</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1557</ID>
                                      <Description>"NoFloorSlipCheckRadius"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1034</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1558</ID>
                                      <Description>"NoFloorSlipCheckWaitSec"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1038</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1559</ID>
                                      <Description>"NoFloorSlipSpeedRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+103C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1560</ID>
                                      <Description>"NoFloorSlipDownRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1040</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1561</ID>
                                      <Description>"NoFloorSlipDumpRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1044</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1562</ID>
                                      <Description>"NoFloorSlipMaxSpeed"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1048</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1563</ID>
                                      <Description>"NoFloorSlipSlopeSpeedRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+104C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1564</ID>
                                      <Description>"bNoFloorSlipCheckVelocityZero"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1050</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1565</ID>
                                      <Description>"PlayableMovementMode"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1090</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1566</ID>
                                      <Description>"MinMovementSpeedRate"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1098</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1567</ID>
                                      <Description>"bDontApplyAvoidanceVelocity"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+10B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1568</ID>
                                      <Description>"bEnableSuppressionOfJumpingDueToSmallSteps"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+10B5</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1569</ID>
                                      <Description>"BrakingDecelerationFloating"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1170</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1570</ID>
                                      <Description>"FloatingGroundFriction"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1174</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1571</ID>
                                      <Description>"SlipOffFloorAngle"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Float</VariableType>
                                      <Address>+1184</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1572</ID>
                                      <Description>"bCancelSlipOffOnFreeFalling"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+1188</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
                <CheatEntry>
                  <ID>1578</ID>
                  <Description>"DOLLGamePlayer / Gold"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+1C8</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1589</ID>
                      <Description>"DOLLGamePlayerCondition"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+30</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1590</ID>
                          <Description>"ToherosuMaxSec"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+11C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1591</ID>
                          <Description>"ShipToherosuSecRate"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+120</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1592</ID>
                          <Description>"ToherosuRange"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+124</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1593</ID>
                          <Description>"SeisuiMaxSec"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+128</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1594</ID>
                          <Description>"ShipSeisuiSecRate"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Float</VariableType>
                          <Address>+12C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1595</ID>
                          <Description>"bIsSeisui"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+130</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1596</ID>
                          <Description>"RidingVehicleType"</Description>
                          <DropDownList DisplayValueAsItem="1">0:EDOLLVehicle::None
1:EDOLLVehicle::Ship
2:EDOLLVehicle::Raft
3:EDOLLVehicle::MagicCarpet
4:EDOLLVehicle::FlyStone
5:EDOLLVehicle::HameliaShip
6:EDOLLVehicle::HameliaBoat
7:EDOLLVehicle::MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+158</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1597</ID>
                          <Description>"RidingVehicleModelType"</Description>
                          <DropDownList DisplayValueAsItem="1">0:EDOLLVehicleModelId::None
1:EDOLLVehicleModelId::MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+159</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1598</ID>
                          <Description>"PlayerControlCharacter"</Description>
                          <DropDownList DisplayValueAsItem="1">0:EDOLLPlayerControlCharacter::Hero
1:EDOLLPlayerControlCharacter::Ship
2:EDOLLPlayerControlCharacter::MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+15A</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1599</ID>
                          <Description>"HeroCharacterForm"</Description>
                          <DropDownList DisplayValueAsItem="1">0:EDOLLHeroCharacterForm::Human
1:EDOLLHeroCharacterForm::MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+15B</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1579</ID>
                      <Description>"Gold"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1581</ID>
                      <Description>"??"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+CC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1582</ID>
                      <Description>"??"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+D0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1580</ID>
                      <Description>"Gold earned??"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+D4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1583</ID>
                      <Description>"??"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>Double</VariableType>
                      <Address>+440</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1584</ID>
                      <Description>"Play time?"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>Double</VariableType>
                      <Address>+450</Address>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1602</ID>
      <Description>"Get item list"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/04/05
}

[ENABLE]

aobscanmodule(INJECT_GET_ITEM_LIST,$process,8B ?? 18 ?? 8B ?? 24 ?? 83 ?? 01 0F)
// raw AOB: 75 ?? 45 8B C6 48 8D 54 24 20 48 8B CE E8 ?? ?? ?? ?? 0F B6 C8 84 C0 74 ?? 83 E9 01 74 ?? 83 F9 02 74 ?? 48 8B 8B 00 05 00 00 45 33 C0 33 D2 E8 ?? ?? ?? ?? 8B 57 18 4C 8B 74 24 50 83 FA 01 0F 8E ?? ?? ?? ?? 48 8B 8B 10 05 00 00 E8 ?? ?? ?? ?? B2 01 EB ?? BE 01 00 00 00 EB ?? 33 F6 48 8B 8B 00 05 00 00 45 33 C0 B2 01 E8 ?? ?? ?? ?? 48 8B 8B 00 05 00 00 E8 ?? ?? ?? ?? 48 8B 83 00 05 00 00
// injection point AOB: 8B ?? 18 ?? 8B ?? 24 ?? 83 ?? 01 0F 8E ?? ?? ?? ?? ?? 8B ?? 10 05 00 00 E8 ?? ?? ?? ?? ?? 01 EB ?? ?? 01 00 00 00 EB ?? 33 ?? ?? 8B ?? 00 05 00 00 ?? 33 ?? ?? 01 E8 ?? ?? ?? ?? ?? 8B ?? 00 05 00 00 E8 ?? ?? ?? ?? ?? 8B ?? 00 05 00 00
alloc(newmem,$1000,INJECT_GET_ITEM_LIST)
alloc(ptrList_arr_INJECT_GET_ITEM_LIST_402779,$640)

alloc(INJECT_GET_ITEM_LISTo, $8)

label(code)
label(return)
label(ptrList_count_INJECT_GET_ITEM_LIST_402779)
label(i_itemlst_qty_low i_itemlst_qty_high)
label(i_itemlst_id_low i_itemlst_id_high)
label(i_itemlst_stack_low i_itemlst_stack_high)
label(is_auto_set_amount i_auto_set_amt_threshold i_auto_set_amt_to)

INJECT_GET_ITEM_LISTo:
  readmem(INJECT_GET_ITEM_LIST, $8)

newmem:
  // **** Begin Auto script: AddressCapture
  // mode=List, capacity=200
  pushfq
  push r15
  push r13
  // Address Capture List
  mov r15, ptrList_arr_INJECT_GET_ITEM_LIST_402779
  xor r13d, r13d
dedup_loop_402779:
  cmp r13d, [ptrList_count_INJECT_GET_ITEM_LIST_402779]
  jge short store_new_402779
  cmp [r15+r13*8], rdi
  je short skip_store_402779
  inc r13d
  jmp short dedup_loop_402779
store_new_402779:
  cmp r13d, #200
  jge short skip_store_402779
  mov [r15+r13*8], rdi
  inc dword ptr [ptrList_count_INJECT_GET_ITEM_LIST_402779]
skip_store_402779:
  pop r13
  pop r15
  popfq
  // **** End Auto script: AddressCapture

  // User script start
  cmp dword ptr [is_auto_set_amount], 1
  jne short endp_all

  cmp dword ptr [rdi+1C], 1 // stack amount allowed size = 1
  je short code

  push r15
  mov r15d, [i_auto_set_amt_threshold]
  cmp [rdi+18], r15d
  jb short endp
  mov r15d, [i_auto_set_amt_to]
  cmp [rdi+18], r15d
  jae short endp
  mov [rdi+18], r15d

endp:
  pop r15


endp_all:
  // Usert script end


code:
  // mov edx,[rdi+18]
  reassemble(INJECT_GET_ITEM_LIST)
  // mov r14,[rsp+50]
  reassemble(INJECT_GET_ITEM_LIST+3)
  jmp return
  align 10 cc
  ptrList_count_INJECT_GET_ITEM_LIST_402779:
  dd 0
  i_itemlst_qty_low:
  dd 1
  i_itemlst_qty_high:
  dd #99
  i_itemlst_id_low:
  dw 4500
  i_itemlst_id_high:
  dw CAFF
  i_itemlst_stack_low:
  dd #2
  i_itemlst_stack_high:
  dd #99
  is_auto_set_amount:
  dd 1
  i_auto_set_amt_threshold:
  dd 2
  i_auto_set_amt_to:
  dd 30

INJECT_GET_ITEM_LIST:
  jmp newmem
  nop 3
return:
registersymbol(INJECT_GET_ITEM_LIST INJECT_GET_ITEM_LISTo)
registersymbol(ptrList_arr_INJECT_GET_ITEM_LIST_402779 ptrList_count_INJECT_GET_ITEM_LIST_402779)
registersymbol(i_itemlst_qty_low i_itemlst_qty_high)
registersymbol(i_itemlst_id_low i_itemlst_id_high)
registersymbol(i_itemlst_stack_low i_itemlst_stack_high)
registersymbol(is_auto_set_amount i_auto_set_amt_threshold i_auto_set_amt_to)
[DISABLE]

INJECT_GET_ITEM_LIST:
  readmem(INJECT_GET_ITEM_LISTo, $8)

unregistersymbol(INJECT_GET_ITEM_LIST INJECT_GET_ITEM_LISTo)
unregistersymbol(ptrList_arr_INJECT_GET_ITEM_LIST_402779 ptrList_count_INJECT_GET_ITEM_LIST_402779)
unregistersymbol(i_itemlst_qty_low i_itemlst_qty_high)
unregistersymbol(i_itemlst_id_low i_itemlst_id_high)
unregistersymbol(i_itemlst_stack_low i_itemlst_stack_high)
unregistersymbol(is_auto_set_amount i_auto_set_amt_threshold i_auto_set_amt_to)
dealloc(newmem)
dealloc(INJECT_GET_ITEM_LISTo)
dealloc(ptrList_arr_INJECT_GET_ITEM_LIST_402779)

{
// ORIGINAL CODE - INJECTION POINT: "DQ7R-Win64-Shipping.exe"+17A1E5A

"DQ7R-Win64-Shipping.exe"+17A1E26: 75 21                              - jne "DQ7R-Win64-Shipping.exe"+17A1E49
"DQ7R-Win64-Shipping.exe"+17A1E28: 45 8B C6                           - mov r8d,r14d
"DQ7R-Win64-Shipping.exe"+17A1E2B: 48 8D 54 24 20                     - lea rdx,[rsp+20]
"DQ7R-Win64-Shipping.exe"+17A1E30: 48 8B CE                           - mov rcx,rsi
"DQ7R-Win64-Shipping.exe"+17A1E33: E8 18 ED 11 00                     - call "DQ7R-Win64-Shipping.exe"+18C0B50
"DQ7R-Win64-Shipping.exe"+17A1E38: 0F B6 C8                           - movzx ecx,al
"DQ7R-Win64-Shipping.exe"+17A1E3B: 84 C0                              - test al,al
"DQ7R-Win64-Shipping.exe"+17A1E3D: 74 43                              - je "DQ7R-Win64-Shipping.exe"+17A1E82
"DQ7R-Win64-Shipping.exe"+17A1E3F: 83 E9 01                           - sub ecx,01
"DQ7R-Win64-Shipping.exe"+17A1E42: 74 37                              - je "DQ7R-Win64-Shipping.exe"+17A1E7B
"DQ7R-Win64-Shipping.exe"+17A1E44: 83 F9 02                           - cmp ecx,02
"DQ7R-Win64-Shipping.exe"+17A1E47: 74 11                              - je "DQ7R-Win64-Shipping.exe"+17A1E5A
"DQ7R-Win64-Shipping.exe"+17A1E49: 48 8B 8B 00 05 00 00               - mov rcx,[rbx+00000500]
"DQ7R-Win64-Shipping.exe"+17A1E50: 45 33 C0                           - xor r8d,r8d
"DQ7R-Win64-Shipping.exe"+17A1E53: 33 D2                              - xor edx,edx
"DQ7R-Win64-Shipping.exe"+17A1E55: E8 96 9D 15 00                     - call "DQ7R-Win64-Shipping.exe"+18FBBF0
// ---------- INJECTING HERE ----------
"DQ7R-Win64-Shipping.exe"+17A1E5A: 8B 57 18                           - mov edx,[rdi+18]
// ---------- DONE INJECTING  ----------
"DQ7R-Win64-Shipping.exe"+17A1E5D: 4C 8B 74 24 50                     - mov r14,[rsp+50]
"DQ7R-Win64-Shipping.exe"+17A1E62: 83 FA 01                           - cmp edx,01
"DQ7R-Win64-Shipping.exe"+17A1E65: 0F 8E 83 00 00 00                  - jng "DQ7R-Win64-Shipping.exe"+17A1EEE
"DQ7R-Win64-Shipping.exe"+17A1E6B: 48 8B 8B 10 05 00 00               - mov rcx,[rbx+00000510]
"DQ7R-Win64-Shipping.exe"+17A1E72: E8 C9 FB 12 00                     - call "DQ7R-Win64-Shipping.exe"+18D1A40
"DQ7R-Win64-Shipping.exe"+17A1E77: B2 01                              - mov dl,01
"DQ7R-Win64-Shipping.exe"+17A1E79: EB 75                              - jmp "DQ7R-Win64-Shipping.exe"+17A1EF0
"DQ7R-Win64-Shipping.exe"+17A1E7B: BE 01 00 00 00                     - mov esi,00000001
"DQ7R-Win64-Shipping.exe"+17A1E80: EB 02                              - jmp "DQ7R-Win64-Shipping.exe"+17A1E84
"DQ7R-Win64-Shipping.exe"+17A1E82: 33 F6                              - xor esi,esi
"DQ7R-Win64-Shipping.exe"+17A1E84: 48 8B 8B 00 05 00 00               - mov rcx,[rbx+00000500]
"DQ7R-Win64-Shipping.exe"+17A1E8B: 45 33 C0                           - xor r8d,r8d
"DQ7R-Win64-Shipping.exe"+17A1E8E: B2 01                              - mov dl,01
"DQ7R-Win64-Shipping.exe"+17A1E90: E8 5B 9D 15 00                     - call "DQ7R-Win64-Shipping.exe"+18FBBF0
"DQ7R-Win64-Shipping.exe"+17A1E95: 48 8B 8B 00 05 00 00               - mov rcx,[rbx+00000500]
"DQ7R-Win64-Shipping.exe"+17A1E9C: E8 FF 38 F4 FF                     - call "DQ7R-Win64-Shipping.exe"+16E57A0
}

</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1653</ID>
          <Description>"Usage: open item menu and browse"</Description>
          <Color>8000FF</Color>
          <GroupHeader>1</GroupHeader>
        </CheatEntry>
        <CheatEntry>
          <ID>1654</ID>
          <Description>"Auto set amount?"</Description>
          <DropDownListLink>YesNo</DropDownListLink>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>is_auto_set_amount</Address>
          <CheatEntries>
            <CheatEntry>
              <ID>1655</ID>
              <Description>"cur. amt. must &gt;="</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>C08000</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>i_auto_set_amt_threshold</Address>
            </CheatEntry>
            <CheatEntry>
              <ID>1656</ID>
              <Description>"set amt. to"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>C08000</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>i_auto_set_amt_to</Address>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
        <CheatEntry>
          <ID>1652</ID>
          <Description>"Generate list: set criteria"</Description>
          <Options moDeactivateChildrenAsWell="1"/>
          <GroupHeader>1</GroupHeader>
          <CheatEntries>
            <CheatEntry>
              <ID>1636</ID>
              <Description>"Qty filter: low"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>C08000</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>i_itemlst_qty_low</Address>
            </CheatEntry>
            <CheatEntry>
              <ID>1651</ID>
              <Description>"Qty filter: high"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>C08000</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>i_itemlst_qty_high</Address>
            </CheatEntry>
            <CheatEntry>
              <ID>1649</ID>
              <Description>"item stack amount: low"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>C08000</Color>
              <VariableType>2 Bytes</VariableType>
              <Address>i_itemlst_stack_low</Address>
            </CheatEntry>
            <CheatEntry>
              <ID>1650</ID>
              <Description>"item stack amount: high"</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>C08000</Color>
              <VariableType>2 Bytes</VariableType>
              <Address>i_itemlst_stack_high</Address>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
        <CheatEntry>
          <ID>1633</ID>
          <Description>"Generate list"</Description>
          <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

-- Polyfill: define closeLuaEngine2/closeLuaEngine if not available
if not closeLuaEngine2 then
    function closeLuaEngine2()
        synchronize(function()
          getLuaEngine().MenuItem5.doClick()
          getLuaEngine().Close()
        end)
    end
end
registerLuaFunctionHighlight('closeLuaEngine2')
if not closeLuaEngine then
    function closeLuaEngine()
        synchronize(function()
          getLuaEngine().Close()
        end)
    end
end
registerLuaFunctionHighlight('closeLuaEngine')

closeLuaEngine2()

-- @AOBMAKER:ITEM_LIST v1
local CONFIG = {
  baseSymbol = "ptrList_arr_INJECT_GET_ITEM_LIST_402779",  -- CE registersymbol name for the base pointer array
  parentName = "+Item List (do not delete this)",  -- Parent group header description in CE address list
  maxItems = 200,  -- Maximum number of pointer slots to iterate
  ptrStride = 0x8,  -- Stride between pointer slots in bytes (0x8 = 64-bit pointers)
  itemLabel = "Item",  -- Label prefix for each item row (e.g. "Item" -&gt; "Item[000]")
  evenColor = 0xC89664,  -- Alternating even-row color (CE BGR format)
  oddColor = 0x8C7A6E,  -- Alternating odd-row color (CE BGR format)
}

--[[ ============================================================
  FIELDS configuration guide
  Each field = {name, offset, vartype, showAsHex, bitStart, bitLength, dropdown, color}
  Only the first 4 parameters are required; the rest are optional.

  ── Parameter reference ──
  name       (string)  Display name of the field.
  offset     (hex int) Byte offset from the item base pointer (e.g. 0x0, 0x4, 0x10).
  vartype    (CE type) CE variable type constant. Available types:
               vtByte      1-byte unsigned integer (0-255)
               vtWord      2-byte unsigned integer (0-65535)
               vtDword     4-byte signed integer
               vtQword     8-byte signed integer
               vtSingle    4-byte float  (aka "Float" in CE)
               vtDouble    8-byte double (aka "Double" in CE)
               vtString    Text string (use with rec.String.Size / .Unicode)
               vtBinary    Bit field — requires bitStart and bitLength
               vtByteArray Raw byte array
  showAsHex  (bool)    true = display value in hexadecimal, false = decimal.
  bitStart   (int|nil) For vtBinary only: starting bit position (0-based).
  bitLength  (int|nil) For vtBinary only: number of bits to display.
  dropdown   (str|nil) CE DropDownList link name (e.g. "I.ID"). Links the field
                       to a named dropdown list defined elsewhere in the cheat table.
  color      (hex|nil) Override color for this field (CE BGR format, e.g. 0x0000FF = red).
                       nil = inherit color from the parent row.

  ── Examples ──
  -- Basic integer field (4 bytes, decimal display)
  {"HP", 0x10, vtDword, false},

  -- Integer field shown in hex
  {"Flags", 0x08, vtDword, true},

  -- Float field (4 bytes)
  {"Speed", 0x20, vtSingle, false},

  -- Double field (8 bytes)
  {"Position X", 0x30, vtDouble, false},

  -- 1-byte field
  {"Level", 0x04, vtByte, false},

  -- 2-byte field
  {"Item ID", 0x06, vtWord, false},

  -- 8-byte field (qword)
  {"Pointer", 0x00, vtQword, true},

  -- Bit field: 1 bit starting at bit 3 of the byte at offset 0x0A
  {"Is Active", 0x0A, vtBinary, false, 3, 1},

  -- Field with dropdown link (links to a CE dropdown list named "I.ID")
  {"Item Type", 0x08, vtDword, false, nil, nil, "I.ID"},

  -- Field with custom color (red text in CE, 0x0000FF = BGR red)
  {"Danger Value", 0x0C, vtDword, false, nil, nil, nil, 0x0000FF},

  -- Dropdown + custom color
  {"Category", 0x14, vtDword, false, nil, nil, "Cat.ID", 0x007FAF},
============================================================ ]]

local FIELDS = {
  -- Example fields (uncomment and modify):
  -- {"HP", 0x10, vtDword, false},
  -- {"Speed", 0x20, vtSingle, false},
  -- {"Is Active", 0x30, vtBinary, false, 3, 1},
  -- {"Element", 0x30, vtBinary, false, 4, 4},
  -- {"Type", 0x08, vtDword, false, nil, nil, "I.ID", 0x007FAF},
  {"ID??", 0x10, vtWord, true},
  {"Amount", 0x18, vtDword, false},
  {"Stack size", 0x1C, vtDword, false},
}

local FILTER = {
  qtyLowSymbol = "i_itemlst_qty_low",  -- CE symbol for quantity lower bound
  qtyHighSymbol = "i_itemlst_qty_high",  -- CE symbol for quantity upper bound
  qtyFieldOffset = 0x18,  -- Byte offset of quantity field within each item
  qtyVarType = "vtDword",  -- CE variable type for quantity read
  idLowSymbol = "i_itemlst_stack_low",  -- CE symbol for ID filter lower bound (0 = disabled)
  idHighSymbol = "i_itemlst_stack_high",  -- CE symbol for ID filter upper bound
  idFieldOffset = 0x1C,  -- Byte offset of ID field within each item
  idVarType = "vtDword",  -- CE variable type for ID read
}

-- @AOBMAKER:END

---- GENERATED CODE (do not edit below) ----

local addressList = getAddressList()

local baseAddr = getAddressSafe(CONFIG.baseSymbol)
if not baseAddr then
  print("Cannot resolve symbol: " .. CONFIG.baseSymbol)
  return
end

-- Read filter parameters
local qtyLow = readInteger(FILTER.qtyLowSymbol)
local qtyHigh = readInteger(FILTER.qtyHighSymbol)
local idLow = readInteger(FILTER.idLowSymbol)
local idHigh = readInteger(FILTER.idHighSymbol)

if not qtyLow or not qtyHigh or not idLow or not idHigh then
  print("Error: cannot read filter symbols")
  return
end

-- Auto-correct ID filter range
if idHigh &gt; 0 and idLow == 0 then
  idHigh = 0
  writeInteger(FILTER.idHighSymbol, 0)
end
if idLow ~= 0 and idHigh &lt; idLow then
  idHigh = idLow
  writeInteger(FILTER.idHighSymbol, idLow)
end

local colorIdx = 0

synchronize(function()
  -- Find or create parent group header
  local parent = addressList.getMemoryRecordByDescription(CONFIG.parentName)
  if not parent then
    parent = addressList.createMemoryRecord()
    parent.Description = CONFIG.parentName
    parent.IsGroupHeader = true
    parent.Options = "[moHideChildren]"
  end

  -- Clear old children
  for i = addressList.Count - 1, 0, -1 do
    local mr = addressList[i]
    if mr.Parent == parent then mr.delete() end
  end

  for idx = 0, CONFIG.maxItems - 1 do
    local ptr = readQword(baseAddr + idx * CONFIG.ptrStride)
    if not ptr or ptr == 0 then break end

    -- Filter logic
    local itemQty = readInteger(ptr + FILTER.qtyFieldOffset)
    local itemId = readSmallInteger(ptr + FILTER.idFieldOffset)
    if itemQty and itemId then
      local qtyInRange = (itemQty &gt;= qtyLow and itemQty &lt;= qtyHigh)
      local shouldShow = false
      if idLow ~= 0 then
        local idMatch = (idHigh == 0) and (itemId == idLow) or (itemId &gt;= idLow and itemId &lt;= idHigh)
        shouldShow = idMatch and qtyInRange
      else
        shouldShow = qtyInRange
      end
      if not shouldShow then goto continue end
    else
      goto continue
    end

    local row = addressList.createMemoryRecord()
    row.Description = string.format("%s[%03d]", CONFIG.itemLabel, idx)
    row.Address = string.format("%X", ptr)
    row.IsGroupHeader = true
    row.Parent = parent
    row.Color = (colorIdx % 2 == 0) and CONFIG.evenColor or CONFIG.oddColor

    for _, f in ipairs(FIELDS) do
      local name, offset, vt, hex = f[1], f[2], f[3], f[4]
      local bitStart, bitLen, dropdown, color = f[5], f[6], f[7], f[8]
      local rec = addressList.createMemoryRecord()
      rec.Description = name
      rec.Address = string.format("%X", ptr + offset)
      rec.Vartype = vt
      if hex then rec.ShowAsHex = true end
      rec.Parent = row
      if color then rec.Color = color end
      if dropdown then
        rec.DropDownLinked = true
        rec.DropDownLinkedMemrec = dropdown
      end
      if vt == vtBinary and bitStart and bitLen then
        rec.Binary.Startbit = bitStart
        rec.Binary.Size = bitLen
      end
    end

    colorIdx = colorIdx + 1
    ::continue::
  end

  parent.IsExpanded = true
end)

print(string.format("%d items scanned, %d displayed.", CONFIG.maxItems, colorIdx))
closeLuaEngine()

[DISABLE]
{$lua}
if syntaxcheck then return end

local parentName = "+Item List (do not delete this)"
local addressList = getAddressList()

synchronize(function()
  local parent = addressList.getMemoryRecordByDescription(parentName)
  if not parent then
    print("Cannot find parent node: " .. parentName)
    return
  end
  for i = addressList.Count - 1, 0, -1 do
    local mr = addressList[i]
    if mr.Parent == parent then mr.delete() end
  end
  parent.Active = false
end)

print("Item list nodes cleared.")
closeLuaEngine()



</AssemblerScript>
          <CheatEntries>
            <CheatEntry>
              <ID>1634</ID>
              <Description>"+Item List (do not delete this)"</Description>
              <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
              <GroupHeader>1</GroupHeader>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
        <CheatEntry>
          <ID>1635</ID>
          <Description>"+First 30 amount (no filters)"</Description>
          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
          <GroupHeader>1</GroupHeader>
          <CheatEntries>
            <CheatEntry>
              <ID>1603</ID>
              <Description>""#1""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1604</ID>
              <Description>""#2""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+8</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1605</ID>
              <Description>""#3""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+10</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1606</ID>
              <Description>""#4""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+18</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1607</ID>
              <Description>""#5""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+20</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1608</ID>
              <Description>""#6""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+28</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1609</ID>
              <Description>""#7""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+30</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1610</ID>
              <Description>""#8""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+38</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1611</ID>
              <Description>""#9""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+40</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1612</ID>
              <Description>""#10""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+48</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1613</ID>
              <Description>""#11""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+50</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1614</ID>
              <Description>""#12""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+58</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1615</ID>
              <Description>""#13""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+60</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1616</ID>
              <Description>""#14""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+68</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1617</ID>
              <Description>""#15""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+70</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1618</ID>
              <Description>""#16""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+78</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1619</ID>
              <Description>""#17""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+80</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1620</ID>
              <Description>""#18""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+88</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1621</ID>
              <Description>""#19""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+90</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1622</ID>
              <Description>""#20""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+98</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1623</ID>
              <Description>""#21""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+A0</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1624</ID>
              <Description>""#22""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+A8</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1625</ID>
              <Description>""#23""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+B0</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1626</ID>
              <Description>""#24""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+B8</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1627</ID>
              <Description>""#25""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+C0</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1628</ID>
              <Description>""#26""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+C8</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1629</ID>
              <Description>""#27""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+D0</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1630</ID>
              <Description>""#28""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+D8</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1631</ID>
              <Description>""#29""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+E0</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
            <CheatEntry>
              <ID>1632</ID>
              <Description>""#30""</Description>
              <ShowAsSigned>0</ShowAsSigned>
              <Color>FF8080</Color>
              <VariableType>4 Bytes</VariableType>
              <Address>ptrList_arr_INJECT_GET_ITEM_LIST_402779+E8</Address>
              <Offsets>
                <Offset>18</Offset>
              </Offsets>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1659</ID>
      <Description>"Move faster"</Description>
      <Options moHideChildren="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/04/06
}

[ENABLE]

aobscanmodule(INJECT_FASTER_MOVE,$process,F3 0F 11 ?? 8C 01 00 00 E8 ?? ?? ?? ?? F3)
// raw AOB: 84 C0 74 ?? 41 0F 28 F3 48 85 F6 74 ?? EB ?? 48 8D 95 90 00 00 00 48 85 F6 74 ?? 48 8B 06 48 8B CE FF 90 78 0B 00 00 0F 28 F0 48 8B CF E8 ?? ?? ?? ?? 48 8B CF F3 0F 11 86 8C 01 00 00 E8 ?? ?? ?? ?? F3 0F 11 86 98 01 00 00 EB ?? 48 8B 07 48 8B CF FF 90 80 02 00 00 0F 28 F0 48 8B BB 58 02 00 00 48 85 FF 0F 84 ?? ?? ?? ?? 41 0F 2F F5 0F 86 ?? ?? ?? ?? 48 8B 03 48 8D 54 24 60 48 8B CB FF 90 D8 06 00 00
// injection point AOB: F3 0F 11 ?? 8C 01 00 00 E8 ?? ?? ?? ?? F3 0F 11 ?? 98 01 00 00 EB ?? ?? 8B ?? ?? 8B ?? FF ?? 80 02 00 00 0F 28 ?? ?? 8B ?? 58 02 00 00 ?? 85 ?? 0F 84 ?? ?? ?? ?? ?? 0F 2F ?? 0F 86 ?? ?? ?? ?? ?? 8B ?? ?? 8D ?? 24 ?? ?? 8B ?? FF ?? D8 06 00 00
alloc(newmem,$1000,INJECT_FASTER_MOVE)

alloc(INJECT_FASTER_MOVEo, $8)

label(code)
label(return)
label(vf_target_speed)

INJECT_FASTER_MOVEo:
  readmem(INJECT_FASTER_MOVE, $8)

newmem:
  vxorps xmm15, xmm15, xmm15
  vucomiss xmm0, xmm15
  je short code
  vmovss xmm15, [vf_500]
  vucomiss xmm0, xmm15
  jb short code
  vmovss xmm0, [vf_target_speed]

code:
  // movss [rsi+0000018C],xmm0
  reassemble(INJECT_FASTER_MOVE)
  jmp return
  align 10 cc
  vf_500:
  dd (float)500
  vf_target_speed:
  dd (float)1000

INJECT_FASTER_MOVE:
  jmp newmem
  nop 3
return:
registersymbol(INJECT_FASTER_MOVE INJECT_FASTER_MOVEo)
registersymbol(vf_target_speed)
[DISABLE]

INJECT_FASTER_MOVE:
  readmem(INJECT_FASTER_MOVEo, $8)

unregistersymbol(INJECT_FASTER_MOVE INJECT_FASTER_MOVEo)
unregistersymbol(vf_target_speed)
dealloc(newmem)
dealloc(INJECT_FASTER_MOVEo)

{
// ORIGINAL CODE - INJECTION POINT: "DQ7R-Win64-Shipping.exe"+136CC82

"DQ7R-Win64-Shipping.exe"+136CC4D: 84 C0                              - test al,al
"DQ7R-Win64-Shipping.exe"+136CC4F: 74 0B                              - je "DQ7R-Win64-Shipping.exe"+136CC5C
"DQ7R-Win64-Shipping.exe"+136CC51: 41 0F 28 F3                        - movaps xmm6,xmm11
"DQ7R-Win64-Shipping.exe"+136CC55: 48 85 F6                           - test rsi,rsi
"DQ7R-Win64-Shipping.exe"+136CC58: 74 4E                              - je "DQ7R-Win64-Shipping.exe"+136CCA8
"DQ7R-Win64-Shipping.exe"+136CC5A: EB 1B                              - jmp "DQ7R-Win64-Shipping.exe"+136CC77
"DQ7R-Win64-Shipping.exe"+136CC5C: 48 8D 95 90 00 00 00               - lea rdx,[rbp+00000090]
"DQ7R-Win64-Shipping.exe"+136CC63: 48 85 F6                           - test rsi,rsi
"DQ7R-Win64-Shipping.exe"+136CC66: 74 31                              - je "DQ7R-Win64-Shipping.exe"+136CC99
"DQ7R-Win64-Shipping.exe"+136CC68: 48 8B 06                           - mov rax,[rsi]
"DQ7R-Win64-Shipping.exe"+136CC6B: 48 8B CE                           - mov rcx,rsi
"DQ7R-Win64-Shipping.exe"+136CC6E: FF 90 78 0B 00 00                  - call qword ptr [rax+00000B78]
"DQ7R-Win64-Shipping.exe"+136CC74: 0F 28 F0                           - movaps xmm6,xmm0
"DQ7R-Win64-Shipping.exe"+136CC77: 48 8B CF                           - mov rcx,rdi
"DQ7R-Win64-Shipping.exe"+136CC7A: E8 E1 0D FF FF                     - call "DQ7R-Win64-Shipping.exe"+135DA60
"DQ7R-Win64-Shipping.exe"+136CC7F: 48 8B CF                           - mov rcx,rdi
// ---------- INJECTING HERE ----------
"DQ7R-Win64-Shipping.exe"+136CC82: F3 0F 11 86 8C 01 00 00            - movss [rsi+0000018C],xmm0
// ---------- DONE INJECTING  ----------
"DQ7R-Win64-Shipping.exe"+136CC8A: E8 D1 0D FF FF                     - call "DQ7R-Win64-Shipping.exe"+135DA60
"DQ7R-Win64-Shipping.exe"+136CC8F: F3 0F 11 86 98 01 00 00            - movss [rsi+00000198],xmm0
"DQ7R-Win64-Shipping.exe"+136CC97: EB 0F                              - jmp "DQ7R-Win64-Shipping.exe"+136CCA8
"DQ7R-Win64-Shipping.exe"+136CC99: 48 8B 07                           - mov rax,[rdi]
"DQ7R-Win64-Shipping.exe"+136CC9C: 48 8B CF                           - mov rcx,rdi
"DQ7R-Win64-Shipping.exe"+136CC9F: FF 90 80 02 00 00                  - call qword ptr [rax+00000280]
"DQ7R-Win64-Shipping.exe"+136CCA5: 0F 28 F0                           - movaps xmm6,xmm0
"DQ7R-Win64-Shipping.exe"+136CCA8: 48 8B BB 58 02 00 00               - mov rdi,[rbx+00000258]
"DQ7R-Win64-Shipping.exe"+136CCAF: 48 85 FF                           - test rdi,rdi
"DQ7R-Win64-Shipping.exe"+136CCB2: 0F 84 EB 03 00 00                  - je "DQ7R-Win64-Shipping.exe"+136D0A3
"DQ7R-Win64-Shipping.exe"+136CCB8: 41 0F 2F F5                        - comiss xmm6,xmm13
"DQ7R-Win64-Shipping.exe"+136CCBC: 0F 86 E1 03 00 00                  - jbe "DQ7R-Win64-Shipping.exe"+136D0A3
"DQ7R-Win64-Shipping.exe"+136CCC2: 48 8B 03                           - mov rax,[rbx]
"DQ7R-Win64-Shipping.exe"+136CCC5: 48 8D 54 24 60                     - lea rdx,[rsp+60]
"DQ7R-Win64-Shipping.exe"+136CCCA: 48 8B CB                           - mov rcx,rbx
"DQ7R-Win64-Shipping.exe"+136CCCD: FF 90 D8 06 00 00                  - call qword ptr [rax+000006D8]
}


</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1666</ID>
          <Description>"Target speed"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>Float</VariableType>
          <Address>vf_target_speed</Address>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1660</ID>
      <Description>"Battle: HP control"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/04/06
}

[ENABLE]

aobscanmodule(INJECT_BATT_HP_CTRL,$process,83 ?? 14 01 00 00 00 0F 94)
// raw AOB: 48 83 EC 28 48 8B 89 30 04 00 00 48 85 C9 74 ?? 48 8D 15 ?? ?? ?? ?? E8 ?? ?? ?? ?? 84 C0 74 ?? 32 C0 48 83 C4 28 C3 B0 01 48 83 C4 28 C3 CC CC 83 B9 14 01 00 00 00 0F 94 C0 C3 CC CC CC CC CC 40 53 48 83 EC 20 48 8B D9 E8 ?? ?? ?? ?? 48 8B 15 ?? ?? ?? ?? 48 8B CB 48 83 C4 20 5B E9
// injection point AOB: 83 ?? 14 01 00 00 00 0F 94 ?? C3 CC CC CC CC CC 40 53 48 83 EC 20 ?? 8B ?? E8 ?? ?? ?? ?? ?? 8B ?? ?? ?? ?? ?? ?? 8B ?? 48 83 C4 20 ?? E9
alloc(newmem,$1000,INJECT_BATT_HP_CTRL)

alloc(INJECT_BATT_HP_CTRLo, $7)

label(code)
label(return)
label(is_batt_monster_1HP is_batt_player_full_hp is_batt_player_full_mp)
label(i_min_drop_exp i_min_drop_job_exp i_min_drop_gold)
{
108:
0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
}

INJECT_BATT_HP_CTRLo:
  readmem(INJECT_BATT_HP_CTRL, $7)

newmem:
  cmp byte ptr [rcx+00000108], 1
  je short to_player
  jmp short to_enemy

to_player:
  cmp dword ptr [is_batt_player_full_mp], 1
  jne short chk_hp

  push rdx
  mov edx, [rcx+0000013C]
  cmp [rcx+00000118] , edx
  jae short @F
  mov [rcx+00000118] , edx
@@:
  pop rdx

chk_hp:
  cmp dword ptr [is_batt_player_full_hp], 1
  jne code

  push rdx
  mov edx, [rcx+00000138]
  cmp [rcx+00000114] , edx
  jae short @F
  mov [rcx+00000114] , edx
@@:
  pop rdx
  jmp code

to_enemy:
  push rdx

  mov edx, [i_min_drop_exp]
  cmp [rcx+158], edx
  jae short @F
  mov [rcx+158], edx
@@:
  mov edx, [i_min_drop_job_exp]
  cmp [rcx+15C], edx
  jae short @F
  mov [rcx+15C], edx
@@:
  mov edx, [i_min_drop_gold]
  cmp [rcx+160], edx
  jae short @F
  mov [rcx+160], edx
@@:

  pop rdx

  cmp dword ptr [is_batt_monster_1HP], 1
  jne short code

  cmp dword ptr [rcx+00000114], 1
  jbe short code

  mov dword ptr [rcx+00000114], 1

code:
  // cmp dword ptr [rcx+00000114],00
  reassemble(INJECT_BATT_HP_CTRL)
  jmp return
  align 10 cc
  is_batt_monster_1HP:
  dd 0
  is_batt_player_full_hp:
  dd 0
  is_batt_player_full_mp:
  dd 1
  i_min_drop_exp:
  dd A
  i_min_drop_job_exp:
  dd A
  i_min_drop_gold:
  dd A


INJECT_BATT_HP_CTRL:
  jmp newmem
  nop 2
return:
registersymbol(INJECT_BATT_HP_CTRL INJECT_BATT_HP_CTRLo)
registersymbol(is_batt_monster_1HP is_batt_player_full_hp is_batt_player_full_mp)
registersymbol(i_min_drop_exp i_min_drop_job_exp i_min_drop_gold)
[DISABLE]

INJECT_BATT_HP_CTRL:
  readmem(INJECT_BATT_HP_CTRLo, $7)

unregistersymbol(INJECT_BATT_HP_CTRL INJECT_BATT_HP_CTRLo)
unregistersymbol(is_batt_monster_1HP is_batt_player_full_hp is_batt_player_full_mp)
unregistersymbol(i_min_drop_exp i_min_drop_job_exp i_min_drop_gold)
dealloc(newmem)
dealloc(INJECT_BATT_HP_CTRLo)

{
// ORIGINAL CODE - INJECTION POINT: "DQ7R-Win64-Shipping.exe"+1460F70

"DQ7R-Win64-Shipping.exe"+1460F40: 48 83 EC 28                        - sub rsp,28
"DQ7R-Win64-Shipping.exe"+1460F44: 48 8B 89 30 04 00 00               - mov rcx,[rcx+00000430]
"DQ7R-Win64-Shipping.exe"+1460F4B: 48 85 C9                           - test rcx,rcx
"DQ7R-Win64-Shipping.exe"+1460F4E: 74 17                              - je "DQ7R-Win64-Shipping.exe"+1460F67
"DQ7R-Win64-Shipping.exe"+1460F50: 48 8D 15 F1 39 92 04               - lea rdx,["DQ7R-Win64-Shipping.exe"+5D84948]
"DQ7R-Win64-Shipping.exe"+1460F57: E8 84 43 13 00                     - call "DQ7R-Win64-Shipping.exe"+15952E0
"DQ7R-Win64-Shipping.exe"+1460F5C: 84 C0                              - test al,al
"DQ7R-Win64-Shipping.exe"+1460F5E: 74 07                              - je "DQ7R-Win64-Shipping.exe"+1460F67
"DQ7R-Win64-Shipping.exe"+1460F60: 32 C0                              - xor al,al
"DQ7R-Win64-Shipping.exe"+1460F62: 48 83 C4 28                        - add rsp,28
"DQ7R-Win64-Shipping.exe"+1460F66: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+1460F67: B0 01                              - mov al,01
"DQ7R-Win64-Shipping.exe"+1460F69: 48 83 C4 28                        - add rsp,28
"DQ7R-Win64-Shipping.exe"+1460F6D: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+1460F6E: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+1460F6F: CC                                 - int 3
// ---------- INJECTING HERE ----------
"DQ7R-Win64-Shipping.exe"+1460F70: 83 B9 14 01 00 00 00               - cmp dword ptr [rcx+00000114],00
// ---------- DONE INJECTING  ----------
"DQ7R-Win64-Shipping.exe"+1460F77: 0F 94 C0                           - sete al
"DQ7R-Win64-Shipping.exe"+1460F7A: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+1460F7B: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+1460F7C: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+1460F7D: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+1460F7E: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+1460F7F: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+1460F80: 40 53                              - push rbx
"DQ7R-Win64-Shipping.exe"+1460F82: 48 83 EC 20                        - sub rsp,20
"DQ7R-Win64-Shipping.exe"+1460F86: 48 8B D9                           - mov rbx,rcx
"DQ7R-Win64-Shipping.exe"+1460F89: E8 B2 F0 F3 FF                     - call "DQ7R-Win64-Shipping.exe"+13A0040
"DQ7R-Win64-Shipping.exe"+1460F8E: 48 8B 15 33 E4 91 04               - mov rdx,["DQ7R-Win64-Shipping.exe"+5D7F3C8]
"DQ7R-Win64-Shipping.exe"+1460F95: 48 8B CB                           - mov rcx,rbx
"DQ7R-Win64-Shipping.exe"+1460F98: 48 83 C4 20                        - add rsp,20
"DQ7R-Win64-Shipping.exe"+1460F9C: 5B                                 - pop rbx
"DQ7R-Win64-Shipping.exe"+1460F9D: E9 1E 54 13 00                     - jmp "DQ7R-Win64-Shipping.exe"+15963C0
}


</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1661</ID>
          <Description>"Monster 1HP?"</Description>
          <DropDownListLink>YesNo</DropDownListLink>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>is_batt_monster_1HP</Address>
        </CheatEntry>
        <CheatEntry>
          <ID>1662</ID>
          <Description>"Full HP?"</Description>
          <DropDownListLink>YesNo</DropDownListLink>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>is_batt_player_full_hp</Address>
        </CheatEntry>
        <CheatEntry>
          <ID>1663</ID>
          <Description>"Full MP?"</Description>
          <DropDownListLink>YesNo</DropDownListLink>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>is_batt_player_full_mp</Address>
        </CheatEntry>
        <CheatEntry>
          <ID>1669</ID>
          <Description>"min monster exp"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>i_min_drop_exp</Address>
        </CheatEntry>
        <CheatEntry>
          <ID>1670</ID>
          <Description>"min monster job exp"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>i_min_drop_job_exp</Address>
        </CheatEntry>
        <CheatEntry>
          <ID>1671</ID>
          <Description>"min monster gold"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>i_min_drop_gold</Address>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1664</ID>
      <Description>"Battle: damage multiplier"</Description>
      <Options moHideChildren="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/04/06
}

[ENABLE]

aobscanmodule(INJECT_BATT_DAMAGE_MULTI,$process,2B ?? 3B ?? ?? 8B ?? 0F 4D)
// raw AOB: 48 89 5C 24 40 48 8D 54 24 70 C6 44 24 20 01 E8 ?? ?? ?? ?? 66 0F 6E C6 0F 5B C0 66 0F 6E 48 1C 0F 5B C9 F3 0F 59 C8 F3 0F 59 0D ?? ?? ?? ?? F3 0F 58 C9 F3 0F 58 0D ?? ?? ?? ?? F3 44 0F 2D C1 41 D1 F8 8B 8F 14 01 00 00 8B C1 2B C5 3B CD 48 8B CF 0F 4D D8 44 3B C3 41 0F 4D D8 41 B0 01 8B D3 E8 ?? ?? ?? ?? 4C 8D 9C 24 C0 00 00 00 49 8B 5B 10 49 8B 6B 18 49 8B 73 20 49 8B E3 5F C3 CC CC CC
// injection point AOB: 2B ?? 3B ?? ?? 8B ?? 0F 4D ?? ?? 3B ?? ?? 0F 4D ?? ?? ?? 01 8B ?? E8 ?? ?? ?? ?? ?? 8D ?? 24 ?? 00 00 00 ?? 8B ?? 10 ?? 8B ?? 18 ?? 8B ?? 20 ?? 8B ?? ?? C3 CC CC CC
alloc(newmem,$1000,INJECT_BATT_DAMAGE_MULTI)

alloc(INJECT_BATT_DAMAGE_MULTIo, $7)

label(code)
label(return)
label(vf_mult_795389)

INJECT_BATT_DAMAGE_MULTIo:
  readmem(INJECT_BATT_DAMAGE_MULTI, $7)

newmem:
  cmp byte ptr [rdi+00000108], 2
  jne short code

  pushfq
  // **** Begin Auto script: Multiplier
  // value=1.3333, rule=R2_RegReg, template=P1_IntToFloat, NegDeltaCheck, PreserveXmm
  test ebp, ebp
  jle skip_mult_795389
  // Multiplier: delta in ebp
  vmovss xmm15, [vf_mult_795389]
  vcvtsi2ss xmm14, xmm14, ebp
  vmulss xmm14, xmm14, xmm15
  vcvtss2si ebp, xmm14
skip_mult_795389:
  // **** End Auto script: Multiplier
  popfq


code:
  // sub eax,ebp
  reassemble(INJECT_BATT_DAMAGE_MULTI)
  // cmp ecx,ebp
  reassemble(INJECT_BATT_DAMAGE_MULTI+2)
  // mov rcx,rdi
  reassemble(INJECT_BATT_DAMAGE_MULTI+4)
  jmp return
  align 10 cc
  vf_mult_795389:
  dd (float)1.3333

INJECT_BATT_DAMAGE_MULTI:
  jmp newmem
  nop 2
return:
registersymbol(INJECT_BATT_DAMAGE_MULTI INJECT_BATT_DAMAGE_MULTIo vf_mult_795389)

[DISABLE]

INJECT_BATT_DAMAGE_MULTI:
  readmem(INJECT_BATT_DAMAGE_MULTIo, $7)

unregistersymbol(INJECT_BATT_DAMAGE_MULTI INJECT_BATT_DAMAGE_MULTIo vf_mult_795389)
dealloc(newmem)
dealloc(INJECT_BATT_DAMAGE_MULTIo)

{
// ORIGINAL CODE - INJECTION POINT: "DQ7R-Win64-Shipping.exe"+14676CF

"DQ7R-Win64-Shipping.exe"+1467684: 48 89 5C 24 40                     - mov [rsp+40],rbx
"DQ7R-Win64-Shipping.exe"+1467689: 48 8D 54 24 70                     - lea rdx,[rsp+70]
"DQ7R-Win64-Shipping.exe"+146768E: C6 44 24 20 01                     - mov byte ptr [rsp+20],01
"DQ7R-Win64-Shipping.exe"+1467693: E8 08 55 FF FF                     - call "DQ7R-Win64-Shipping.exe"+145CBA0
"DQ7R-Win64-Shipping.exe"+1467698: 66 0F 6E C6                        - movd xmm0,esi
"DQ7R-Win64-Shipping.exe"+146769C: 0F 5B C0                           - cvtdq2ps xmm0,xmm0
"DQ7R-Win64-Shipping.exe"+146769F: 66 0F 6E 48 1C                     - movd xmm1,[rax+1C]
"DQ7R-Win64-Shipping.exe"+14676A4: 0F 5B C9                           - cvtdq2ps xmm1,xmm1
"DQ7R-Win64-Shipping.exe"+14676A7: F3 0F 59 C8                        - mulss xmm1,xmm0
"DQ7R-Win64-Shipping.exe"+14676AB: F3 0F 59 0D 8D 1B 1D 03            - mulss xmm1,["DQ7R-Win64-Shipping.exe"+4639240]
"DQ7R-Win64-Shipping.exe"+14676B3: F3 0F 58 C9                        - addss xmm1,xmm1
"DQ7R-Win64-Shipping.exe"+14676B7: F3 0F 58 0D 69 C3 0F 03            - addss xmm1,["DQ7R-Win64-Shipping.exe"+4563A28]
"DQ7R-Win64-Shipping.exe"+14676BF: F3 44 0F 2D C1                     - cvtss2si r8d,xmm1
"DQ7R-Win64-Shipping.exe"+14676C4: 41 D1 F8                           - sar r8d,1
"DQ7R-Win64-Shipping.exe"+14676C7: 8B 8F 14 01 00 00                  - mov ecx,[rdi+00000114]
"DQ7R-Win64-Shipping.exe"+14676CD: 8B C1                              - mov eax,ecx
// ---------- INJECTING HERE ----------
"DQ7R-Win64-Shipping.exe"+14676CF: 2B C5                              - sub eax,ebp
// ---------- DONE INJECTING  ----------
"DQ7R-Win64-Shipping.exe"+14676D1: 3B CD                              - cmp ecx,ebp
"DQ7R-Win64-Shipping.exe"+14676D3: 48 8B CF                           - mov rcx,rdi
"DQ7R-Win64-Shipping.exe"+14676D6: 0F 4D D8                           - cmovge ebx,eax
"DQ7R-Win64-Shipping.exe"+14676D9: 44 3B C3                           - cmp r8d,ebx
"DQ7R-Win64-Shipping.exe"+14676DC: 41 0F 4D D8                        - cmovge ebx,r8d
"DQ7R-Win64-Shipping.exe"+14676E0: 41 B0 01                           - mov r8b,01
"DQ7R-Win64-Shipping.exe"+14676E3: 8B D3                              - mov edx,ebx
"DQ7R-Win64-Shipping.exe"+14676E5: E8 46 EB FF FF                     - call "DQ7R-Win64-Shipping.exe"+1466230
"DQ7R-Win64-Shipping.exe"+14676EA: 4C 8D 9C 24 C0 00 00 00            - lea r11,[rsp+000000C0]
"DQ7R-Win64-Shipping.exe"+14676F2: 49 8B 5B 10                        - mov rbx,[r11+10]
"DQ7R-Win64-Shipping.exe"+14676F6: 49 8B 6B 18                        - mov rbp,[r11+18]
"DQ7R-Win64-Shipping.exe"+14676FA: 49 8B 73 20                        - mov rsi,[r11+20]
"DQ7R-Win64-Shipping.exe"+14676FE: 49 8B E3                           - mov rsp,r11
"DQ7R-Win64-Shipping.exe"+1467701: 5F                                 - pop rdi
"DQ7R-Win64-Shipping.exe"+1467702: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+1467703: CC                                 - int 3
}


</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1665</ID>
          <Description>"multiplier"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>Float</VariableType>
          <Address>vf_mult_795389</Address>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1667</ID>
      <Description>"Battle: EXP multiplier"</Description>
      <Options moHideChildren="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/04/06
}

[ENABLE]

aobscanmodule(INJECT_BATT_EXP_MULTI,$process,01 ?? 48 01 00 00 C3)
// raw AOB: 75 ?? 32 C0 C3 B0 01 C3 CC CC CC CC CC CC CC CC CC CC CC 01 91 48 01 00 00 C3 CC CC CC CC CC CC CC CC CC 4C 8B DC 55 49 8D 6B C8 48 81 EC 30 01 00 00 48 8B 05 ?? ?? ?? ?? 48 33 C4
// injection point AOB: 01 ?? 48 01 00 00 C3 CC CC CC CC CC CC CC CC CC ?? 8B ?? 55 ?? 8D ?? C8 48 81 EC 30 01 00 00 ?? 8B ?? ?? ?? ?? ?? ?? 33
alloc(newmem,$1000,INJECT_BATT_EXP_MULTI)

alloc(INJECT_BATT_EXP_MULTIo, $6)

label(code)
label(return)
label(vf_mult_663090)

INJECT_BATT_EXP_MULTIo:
  readmem(INJECT_BATT_EXP_MULTI, $6)

newmem:
  pushfq
  // **** Begin Auto script: Multiplier
  // value=1.2, rule=R1_MemReg, template=P1_IntToFloat, NegDeltaCheck, PreserveXmm
  test edx, edx
  jle skip_mult_663090
  // Multiplier: delta in edx
  vmovss xmm15, [vf_mult_663090]
  vcvtsi2ss xmm14, xmm14, edx
  vmulss xmm14, xmm14, xmm15
  vcvtss2si edx, xmm14
skip_mult_663090:
  // **** End Auto script: Multiplier
  popfq


code:
  // add [rcx+00000148],edx
  reassemble(INJECT_BATT_EXP_MULTI)
  jmp return
  align 10 cc
  vf_mult_663090:
  dd (float)1.2

INJECT_BATT_EXP_MULTI:
  jmp newmem
  nop 1
return:
registersymbol(INJECT_BATT_EXP_MULTI INJECT_BATT_EXP_MULTIo vf_mult_663090)

[DISABLE]

INJECT_BATT_EXP_MULTI:
  readmem(INJECT_BATT_EXP_MULTIo, $6)

unregistersymbol(INJECT_BATT_EXP_MULTI INJECT_BATT_EXP_MULTIo vf_mult_663090)
dealloc(newmem)
dealloc(INJECT_BATT_EXP_MULTIo)

{
// ORIGINAL CODE - INJECTION POINT: "DQ7R-Win64-Shipping.exe"+145F730

"DQ7R-Win64-Shipping.exe"+145F71D: 75 F2                              - jne "DQ7R-Win64-Shipping.exe"+145F711
"DQ7R-Win64-Shipping.exe"+145F71F: 32 C0                              - xor al,al
"DQ7R-Win64-Shipping.exe"+145F721: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+145F722: B0 01                              - mov al,01
"DQ7R-Win64-Shipping.exe"+145F724: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+145F725: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F726: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F727: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F728: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F729: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F72A: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F72B: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F72C: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F72D: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F72E: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F72F: CC                                 - int 3
// ---------- INJECTING HERE ----------
"DQ7R-Win64-Shipping.exe"+145F730: 01 91 48 01 00 00                  - add [rcx+00000148],edx
// ---------- DONE INJECTING  ----------
"DQ7R-Win64-Shipping.exe"+145F736: C3                                 - ret
"DQ7R-Win64-Shipping.exe"+145F737: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F738: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F739: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F73A: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F73B: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F73C: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F73D: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F73E: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F73F: CC                                 - int 3
"DQ7R-Win64-Shipping.exe"+145F740: 4C 8B DC                           - mov r11,rsp
"DQ7R-Win64-Shipping.exe"+145F743: 55                                 - push rbp
"DQ7R-Win64-Shipping.exe"+145F744: 49 8D 6B C8                        - lea rbp,[r11-38]
"DQ7R-Win64-Shipping.exe"+145F748: 48 81 EC 30 01 00 00               - sub rsp,00000130
"DQ7R-Win64-Shipping.exe"+145F74F: 48 8B 05 D2 37 8D 04               - mov rax,["DQ7R-Win64-Shipping.exe"+5D32F28]
"DQ7R-Win64-Shipping.exe"+145F756: 48 33 C4                           - xor rax,rsp
}


</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>1668</ID>
          <Description>"multiplier"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>C08000</Color>
          <VariableType>Float</VariableType>
          <Address>vf_mult_663090</Address>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>1657</ID>
      <Description>"DRAGON QUEST VII Reimagined  /  https://opencheattables.com  /  CE 7.6+"</Description>
      <Options moHideChildren="1"/>
      <Color>008200</Color>
      <GroupHeader>1</GroupHeader>
      <CheatEntries>
        <CheatEntry>
          <ID>1658</ID>
          <Description>"YesNo"</Description>
          <DropDownList DisplayValueAsItem="1">0:No
1:Yes
</DropDownList>
          <GroupHeader>1</GroupHeader>
        </CheatEntry>
        <CheatEntry>
          <ID>1830</ID>
          <Description>"GWorld → gworld_addr_AD0129"</Description>
          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(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

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_AD0129', aob='89 7C 24 ?? 55 48 8B EC 48 83 EC ?? 48 8B 05 ?? ?? ?? ?? 48 8B D9 48 8D 4D 10 48 8B 50 18 48', pos=15, aoblen=19, symbol='gworld_addr_AD0129'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(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_AD0129')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
          <CheatEntries>
            <CheatEntry>
              <ID>1831</ID>
              <Description>"base"</Description>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <VariableType>8 Bytes</VariableType>
              <Address>gworld_addr_AD0129</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>1832</ID>
                  <Description>"OwningGameInstance"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+180</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>1833</ID>
                      <Description>"CharacterSystem"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+1C0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1834</ID>
                          <Description>"GameCharacterManager"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1835</ID>
                              <Description>"GameCharacters [12 x ObjectProperty]"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+28</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1836</ID>
                                  <Description>"[8]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsHex>1</ShowAsHex>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1837</ID>
                                      <Description>"ID"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1838</ID>
                                      <Description>"Name"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>String</VariableType>
                                      <Length>256</Length>
                                      <Unicode>1</Unicode>
                                      <CodePage>0</CodePage>
                                      <ZeroTerminate>1</ZeroTerminate>
                                      <Address>+30</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1839</ID>
                                      <Description>"DisplayName"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>String</VariableType>
                                      <Length>256</Length>
                                      <Unicode>1</Unicode>
                                      <CodePage>0</CodePage>
                                      <ZeroTerminate>1</ZeroTerminate>
                                      <Address>+40</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1840</ID>
                                      <Description>"ListName"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>String</VariableType>
                                      <Length>256</Length>
                                      <Unicode>1</Unicode>
                                      <CodePage>0</CodePage>
                                      <ZeroTerminate>1</ZeroTerminate>
                                      <Address>+50</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1841</ID>
                                      <Description>"Gender"</Description>
                                      <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1842</ID>
                                      <Description>"JOB (GameCharacterJob)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+68</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1843</ID>
                                          <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+0</Address>
                                          <Offsets>
                                            <Offset>0</Offset>
                                          </Offsets>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>1844</ID>
                                              <Description>"[0] 0"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <GroupHeader>1</GroupHeader>
                                              <Address>+0</Address>
                                              <CheatEntries>
                                                <CheatEntry>
                                                  <ID>1845</ID>
                                                  <Description>"Key: 0"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <VariableType>Byte</VariableType>
                                                  <Address>+0</Address>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1846</ID>
                                                  <Description>"Value: 0"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <VariableType>Byte</VariableType>
                                                  <Address>+1</Address>
                                                </CheatEntry>
                                              </CheatEntries>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>1847</ID>
                                              <Description>"[1] 1"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <GroupHeader>1</GroupHeader>
                                              <Address>+C</Address>
                                              <CheatEntries>
                                                <CheatEntry>
                                                  <ID>1848</ID>
                                                  <Description>"Key: 1"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <VariableType>Byte</VariableType>
                                                  <Address>+0</Address>
                                                </CheatEntry>
                                                <CheatEntry>
                                                  <ID>1849</ID>
                                                  <Description>"Value: 0"</Description>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <VariableType>Byte</VariableType>
                                                  <Address>+1</Address>
                                                </CheatEntry>
                                              </CheatEntries>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1850</ID>
                                          <Description>"JobLevelMap"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1851</ID>
                                      <Description>"Might"</Description>
                                      <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+108</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1852</ID>
                                      <Description>"Position"</Description>
                                      <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+109</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1853</ID>
                                      <Description>"Gambit"</Description>
                                      <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+10A</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1854</ID>
                                      <Description>"CharacterType"</Description>
                                      <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>Byte</VariableType>
                                      <Address>+10E</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1855</ID>
                                      <Description>"Level"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+110</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1856</ID>
                                      <Description>"HP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+114</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1857</ID>
                                      <Description>"MP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+118</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1858</ID>
                                      <Description>"Tikara"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+11C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1859</ID>
                                      <Description>"Minomamori"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+120</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1860</ID>
                                      <Description>"Subayasa"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+124</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1861</ID>
                                      <Description>"Kiyousa"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+128</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1862</ID>
                                      <Description>"Miryoku"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+12C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1863</ID>
                                      <Description>"KougekiMaryoku"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+130</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1864</ID>
                                      <Description>"KaifukuMaryoku"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+134</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1865</ID>
                                      <Description>"MaxHP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+138</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1866</ID>
                                      <Description>"MaxMP"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+13C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1867</ID>
                                      <Description>"BurstChargeKeepRemainTurn"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+140</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1868</ID>
                                      <Description>"BurstChargeKeepRemainBattle"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+144</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1869</ID>
                                      <Description>"Exp"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+148</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1870</ID>
                                      <Description>"NameIdentifier"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+14C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1871</ID>
                                      <Description>"TroopIndex"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+150</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1872</ID>
                                      <Description>"GroupIndex"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+154</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1873</ID>
                                      <Description>"DropExp"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+158</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1874</ID>
                                      <Description>"DropJobExp"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+15C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1875</ID>
                                      <Description>"DropGold"</Description>
                                      <ShowAsSigned>1</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+160</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1876</ID>
                                      <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+1F8</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1877</ID>
                                          <Description>"[0]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1878</ID>
                                          <Description>"[1]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1879</ID>
                                          <Description>"[2]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1880</ID>
                                          <Description>"[3]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1881</ID>
                                          <Description>"[4]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+10</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1882</ID>
                                          <Description>"[5]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+14</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1883</ID>
                                          <Description>"[6]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+18</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1884</ID>
                                          <Description>"[7]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+1C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1885</ID>
                                          <Description>"[8]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+20</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1886</ID>
                                          <Description>"[9]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+24</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1887</ID>
                                          <Description>"[10]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+28</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1888</ID>
                                          <Description>"[11]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+2C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1889</ID>
                                          <Description>"[12]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+30</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1890</ID>
                                          <Description>"[13]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+34</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1891</ID>
                                          <Description>"[14]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+38</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1892</ID>
                                          <Description>"[15]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+3C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1893</ID>
                                          <Description>"[16]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+40</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1894</ID>
                                          <Description>"[17]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+44</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1895</ID>
                                          <Description>"[18]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+48</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1896</ID>
                                          <Description>"[19]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+4C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1897</ID>
                                          <Description>"[20]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+50</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1898</ID>
                                          <Description>"[21]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+54</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1899</ID>
                                          <Description>"[22]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+58</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1900</ID>
                                          <Description>"[23]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+5C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1901</ID>
                                          <Description>"[24]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+60</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1902</ID>
                                          <Description>"[25]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+64</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1903</ID>
                                          <Description>"[26]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+68</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1904</ID>
                                          <Description>"[27]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+6C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1905</ID>
                                          <Description>"[28]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+70</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1906</ID>
                                          <Description>"[29]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+74</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1907</ID>
                                          <Description>"[30]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+78</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1908</ID>
                                          <Description>"[31]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+7C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1909</ID>
                                          <Description>"[32]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+80</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1910</ID>
                                          <Description>"[33]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+84</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1911</ID>
                                          <Description>"[34]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+88</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1912</ID>
                                          <Description>"[35]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+8C</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1913</ID>
                                          <Description>"[36]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+90</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1914</ID>
                                          <Description>"[37]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+94</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1915</ID>
                                          <Description>"[38]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+98</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1916</ID>
                                          <Description>"[39]"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Float</VariableType>
                                          <Address>+9C</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1917</ID>
                                      <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+210</Address>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>1918</ID>
                                          <Description>"ActionResult.ResultType"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1919</ID>
                                          <Description>"ActionResult.ConsumeResultType"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1920</ID>
                                          <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                          <ShowAsHex>1</ShowAsHex>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>8 Bytes</VariableType>
                                          <Address>+F0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1921</ID>
                                          <Description>"ActionResult.UseMP"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+130</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1922</ID>
                                          <Description>"ActionResult.UseGold"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+134</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1923</ID>
                                          <Description>"ActionResult.AllActionModules"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+138</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1924</ID>
                                          <Description>"ActionResult.HitGroupInfos"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+148</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1925</ID>
                                          <Description>"ActionResult.TargetCharacterInfos"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+158</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1926</ID>
                                          <Description>"ActionResult.ActionTargetCharacters"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+168</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1927</ID>
                                          <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+178</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1928</ID>
                                          <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+180</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1929</ID>
                                          <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+184</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1930</ID>
                                          <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+185</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1931</ID>
                                          <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+188</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1932</ID>
                                          <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+198</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1933</ID>
                                          <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1A8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1934</ID>
                                          <Description>"ActionResult.ReviveGameCharacters"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1B8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1935</ID>
                                          <Description>"ActionResult.ActionVoiceID"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+1C8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1936</ID>
                                          <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1D0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1937</ID>
                                          <Description>"ActionResult.bDamageNoMessage"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1D1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1938</ID>
                                          <Description>"ActionResult.bBunsin"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1D2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1939</ID>
                                          <Description>"ActionResult.bZenmetu"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1D3</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1940</ID>
                                          <Description>"CurrentHitGroupCount"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+1E8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1941</ID>
                                          <Description>"CurrentActionHitRequestCount"</Description>
                                          <ShowAsSigned>1</ShowAsSigned>
                                          <VariableType>4 Bytes</VariableType>
                                          <Address>+1EC</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1942</ID>
                                          <Description>"bKoukaDisable"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1F0</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1943</ID>
                                          <Description>"bPopupBalloonDisable"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1F1</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1944</ID>
                                          <Description>"bPendingDead"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+1F2</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1945</ID>
                                          <Description>"AttackTargetInfos"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1F8</Address>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>1946</ID>
                                          <Description>"bUseDefaultHitEffectSub"</Description>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>Byte</VariableType>
                                          <Address>+208</Address>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1947</ID>
                                      <Description>"OddEffectExecHolder"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+430</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1948</ID>
                                      <Description>"BurstPointControl"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+438</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1949</ID>
                                      <Description>"KokoroEquipmentController"</Description>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+440</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1950</ID>
                                      <Description>"GridSize"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+938</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2193</ID>
                                      <Description>"GWorld → gworld_addr_90175A"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <VariableType>Auto Assembler Script</VariableType>
                                      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModule then
  function AOBScanModule(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

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_90175A', aob='89 7C 24 ?? 55 48 8B EC 48 83 EC ?? 48 8B 05 ?? ?? ?? ?? 48 8B D9 48 8D 4D 10 48 8B 50 18 48', pos=15, aoblen=19, symbol='gworld_addr_90175A'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModule(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_90175A')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2194</ID>
                                          <Description>"base"</Description>
                                          <ShowAsHex>1</ShowAsHex>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <VariableType>8 Bytes</VariableType>
                                          <Address>gworld_addr_90175A</Address>
                                          <Offsets>
                                            <Offset>0</Offset>
                                          </Offsets>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2195</ID>
                                              <Description>"OwningGameInstance"</Description>
                                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                              <ShowAsHex>1</ShowAsHex>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <GroupHeader>1</GroupHeader>
                                              <Address>+180</Address>
                                              <Offsets>
                                                <Offset>0</Offset>
                                              </Offsets>
                                              <CheatEntries>
                                                <CheatEntry>
                                                  <ID>2196</ID>
                                                  <Description>"CharacterSystem"</Description>
                                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                                  <ShowAsHex>1</ShowAsHex>
                                                  <ShowAsSigned>0</ShowAsSigned>
                                                  <GroupHeader>1</GroupHeader>
                                                  <Address>+1C0</Address>
                                                  <Offsets>
                                                    <Offset>0</Offset>
                                                  </Offsets>
                                                  <CheatEntries>
                                                    <CheatEntry>
                                                      <ID>2197</ID>
                                                      <Description>"GameCharacterManager"</Description>
                                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                                      <ShowAsHex>1</ShowAsHex>
                                                      <ShowAsSigned>0</ShowAsSigned>
                                                      <GroupHeader>1</GroupHeader>
                                                      <Address>+30</Address>
                                                      <Offsets>
                                                        <Offset>0</Offset>
                                                      </Offsets>
                                                      <CheatEntries>
                                                        <CheatEntry>
                                                          <ID>2198</ID>
                                                          <Description>"GameCharacters [12 x ObjectProperty]"</Description>
                                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                                          <ShowAsHex>1</ShowAsHex>
                                                          <ShowAsSigned>0</ShowAsSigned>
                                                          <GroupHeader>1</GroupHeader>
                                                          <Address>+28</Address>
                                                          <Offsets>
                                                            <Offset>0</Offset>
                                                          </Offsets>
                                                          <CheatEntries>
                                                            <CheatEntry>
                                                              <ID>2199</ID>
                                                              <Description>"[10]"</Description>
                                                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                                              <ShowAsHex>1</ShowAsHex>
                                                              <ShowAsSigned>0</ShowAsSigned>
                                                              <GroupHeader>1</GroupHeader>
                                                              <Address>+50</Address>
                                                              <Offsets>
                                                                <Offset>0</Offset>
                                                              </Offsets>
                                                              <CheatEntries>
                                                                <CheatEntry>
                                                                  <ID>2200</ID>
                                                                  <Description>"ID"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+28</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2201</ID>
                                                                  <Description>"Name"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>String</VariableType>
                                                                  <Length>256</Length>
                                                                  <Unicode>1</Unicode>
                                                                  <CodePage>0</CodePage>
                                                                  <ZeroTerminate>1</ZeroTerminate>
                                                                  <Address>+30</Address>
                                                                  <Offsets>
                                                                    <Offset>0</Offset>
                                                                  </Offsets>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2202</ID>
                                                                  <Description>"DisplayName"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>String</VariableType>
                                                                  <Length>256</Length>
                                                                  <Unicode>1</Unicode>
                                                                  <CodePage>0</CodePage>
                                                                  <ZeroTerminate>1</ZeroTerminate>
                                                                  <Address>+40</Address>
                                                                  <Offsets>
                                                                    <Offset>0</Offset>
                                                                  </Offsets>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2203</ID>
                                                                  <Description>"ListName"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>String</VariableType>
                                                                  <Length>256</Length>
                                                                  <Unicode>1</Unicode>
                                                                  <CodePage>0</CodePage>
                                                                  <ZeroTerminate>1</ZeroTerminate>
                                                                  <Address>+50</Address>
                                                                  <Offsets>
                                                                    <Offset>0</Offset>
                                                                  </Offsets>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2204</ID>
                                                                  <Description>"Gender"</Description>
                                                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGender::Unknown
1:EDOLLGender::Male
2:EDOLLGender::Female
3:EDOLLGender::MAX
</DropDownList>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>Byte</VariableType>
                                                                  <Address>+60</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2205</ID>
                                                                  <Description>"JOB (GameCharacterJob)"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+68</Address>
                                                                  <CheatEntries>
                                                                    <CheatEntry>
                                                                      <ID>2206</ID>
                                                                      <Description>"JOB {Map: 2, ByteProperty → ByteProperty}"</Description>
                                                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+0</Address>
                                                                      <Offsets>
                                                                        <Offset>0</Offset>
                                                                      </Offsets>
                                                                      <CheatEntries>
                                                                        <CheatEntry>
                                                                          <ID>2207</ID>
                                                                          <Description>"[0] 0"</Description>
                                                                          <ShowAsSigned>0</ShowAsSigned>
                                                                          <GroupHeader>1</GroupHeader>
                                                                          <Address>+0</Address>
                                                                          <CheatEntries>
                                                                            <CheatEntry>
                                                                              <ID>2208</ID>
                                                                              <Description>"Key: 0"</Description>
                                                                              <ShowAsSigned>0</ShowAsSigned>
                                                                              <VariableType>Byte</VariableType>
                                                                              <Address>+0</Address>
                                                                            </CheatEntry>
                                                                            <CheatEntry>
                                                                              <ID>2209</ID>
                                                                              <Description>"Value: 0"</Description>
                                                                              <ShowAsSigned>0</ShowAsSigned>
                                                                              <VariableType>Byte</VariableType>
                                                                              <Address>+1</Address>
                                                                            </CheatEntry>
                                                                          </CheatEntries>
                                                                        </CheatEntry>
                                                                        <CheatEntry>
                                                                          <ID>2210</ID>
                                                                          <Description>"[1] 1"</Description>
                                                                          <ShowAsSigned>0</ShowAsSigned>
                                                                          <GroupHeader>1</GroupHeader>
                                                                          <Address>+C</Address>
                                                                          <CheatEntries>
                                                                            <CheatEntry>
                                                                              <ID>2211</ID>
                                                                              <Description>"Key: 1"</Description>
                                                                              <ShowAsSigned>0</ShowAsSigned>
                                                                              <VariableType>Byte</VariableType>
                                                                              <Address>+0</Address>
                                                                            </CheatEntry>
                                                                            <CheatEntry>
                                                                              <ID>2212</ID>
                                                                              <Description>"Value: 0"</Description>
                                                                              <ShowAsSigned>0</ShowAsSigned>
                                                                              <VariableType>Byte</VariableType>
                                                                              <Address>+1</Address>
                                                                            </CheatEntry>
                                                                          </CheatEntries>
                                                                        </CheatEntry>
                                                                      </CheatEntries>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2213</ID>
                                                                      <Description>"JobLevelMap"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+50</Address>
                                                                    </CheatEntry>
                                                                  </CheatEntries>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2214</ID>
                                                                  <Description>"Might"</Description>
                                                                  <DropDownList DisplayValueAsItem="1">0:EDOLLMight::Unknown
1:EDOLLMight::Player
2:EDOLLMight::Monster
3:EDOLLMight::MAX
</DropDownList>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>Byte</VariableType>
                                                                  <Address>+108</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2215</ID>
                                                                  <Description>"Position"</Description>
                                                                  <DropDownList DisplayValueAsItem="1">0:EDOLLPosition::Vanguard
1:EDOLLPosition::Unknown
2:EDOLLPosition::Rearguard
3:EDOLLPosition::MAX
</DropDownList>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>Byte</VariableType>
                                                                  <Address>+109</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2216</ID>
                                                                  <Description>"Gambit"</Description>
                                                                  <DropDownList DisplayValueAsItem="1">0:EDOLLGambit::Battiriganbare
1:EDOLLGambit::Ganganikouze
2:EDOLLGambit::Iroiroyarouze
3:EDOLLGambit::Inotidaizini
4:EDOLLGambit::MPTukauna
5:EDOLLGambit::Meireisasero
6:EDOLLGambit::Renkeisiyouze
7:EDOLLGambit::MAX
</DropDownList>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>Byte</VariableType>
                                                                  <Address>+10A</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2217</ID>
                                                                  <Description>"CharacterType"</Description>
                                                                  <DropDownList DisplayValueAsItem="1">0:ECharacter::P001_ARUS
1:ECharacter::P002_MARIBERU
2:ECharacter::P003_KIIFA
3:ECharacter::P004_GABO
4:ECharacter::P005_OKAMI
5:ECharacter::P006_MERUBIN
6:ECharacter::P007_AIRA
7:ECharacter::P008_MERUBIN
8:ECharacter::GN001_MACHIRUDA
9:ECharacter::GN002_HANKU
10:ECharacter::GN003_KIKORI
11:ECharacter::GN004_FUURARU
12:ECharacter::GN005_KASHIMU
13:ECharacter::GN006_ZAJI
14:ECharacter::GN007_FUOZU
15:ECharacter::GN008_HADEIITO
16:ECharacter::GN009_ROUGAKUSHI
17:ECharacter::GN010_SAIIDO
18:ECharacter::GN011_KAIZOKUTACHI
19:ECharacter::GN012_YOZEFU
20:ECharacter::GN013_KIKORI
21:ECharacter::GN014_TORADDO
22:ECharacter::GN015_ARUMAN
23:ECharacter::GN016_JAN
24:ECharacter::GN017_DAATSU
25:ECharacter::GN018_FUURARU
26:ECharacter::GN019_KOUKOGAKUSHA
27:ECharacter::GN020_PEPE
28:ECharacter::GN021_SURACCHI
29:ECharacter::GN022_BURUJIO
30:ECharacter::GN023_CHOUROU
31:ECharacter::GN024_SHIIBURU
32:ECharacter::GN025_FIRIA
33:ECharacter::GN026_RUKASU
34:ECharacter::GN027_SHINPU
35:ECharacter::GN028_YOHAN
36:ECharacter::GN029_PAMIRA
37:ECharacter::GN030_SEFAANA
38:ECharacter::GN031_MERUBIN
39:ECharacter::GN032_RIZETTO
40:ECharacter::GN033_ZEBOTTO
41:ECharacter::GN034_OTONAKIIFA
42:ECharacter::GN035_MARIBERU
43:ECharacter::GN036_KIIFA
44:ECharacter::GN037_AIRA
45:ECharacter::GN038_RAIRA
46:ECharacter::Unknown
47:ECharacter::Anyone
48:ECharacter::MAX
</DropDownList>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>Byte</VariableType>
                                                                  <Address>+10E</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2218</ID>
                                                                  <Description>"Level"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+110</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2219</ID>
                                                                  <Description>"HP"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+114</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2220</ID>
                                                                  <Description>"MP"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+118</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2221</ID>
                                                                  <Description>"Tikara"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+11C</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2222</ID>
                                                                  <Description>"Minomamori"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+120</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2223</ID>
                                                                  <Description>"Subayasa"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+124</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2224</ID>
                                                                  <Description>"Kiyousa"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+128</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2225</ID>
                                                                  <Description>"Miryoku"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+12C</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2226</ID>
                                                                  <Description>"KougekiMaryoku"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+130</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2227</ID>
                                                                  <Description>"KaifukuMaryoku"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+134</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2228</ID>
                                                                  <Description>"MaxHP"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+138</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2229</ID>
                                                                  <Description>"MaxMP"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+13C</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2230</ID>
                                                                  <Description>"BurstChargeKeepRemainTurn"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+140</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2231</ID>
                                                                  <Description>"BurstChargeKeepRemainBattle"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+144</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2232</ID>
                                                                  <Description>"Exp"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+148</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2233</ID>
                                                                  <Description>"NameIdentifier"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+14C</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2234</ID>
                                                                  <Description>"TroopIndex"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+150</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2235</ID>
                                                                  <Description>"GroupIndex"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+154</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2236</ID>
                                                                  <Description>"DropExp"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+158</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2237</ID>
                                                                  <Description>"DropJobExp"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+15C</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2238</ID>
                                                                  <Description>"DropGold"</Description>
                                                                  <ShowAsSigned>1</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+160</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2239</ID>
                                                                  <Description>"BaseAttributeParams [40 x FloatProperty (4B)]"</Description>
                                                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+1F8</Address>
                                                                  <Offsets>
                                                                    <Offset>0</Offset>
                                                                  </Offsets>
                                                                  <CheatEntries>
                                                                    <CheatEntry>
                                                                      <ID>2240</ID>
                                                                      <Description>"[0]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+0</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2241</ID>
                                                                      <Description>"[1]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+4</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2242</ID>
                                                                      <Description>"[2]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+8</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2243</ID>
                                                                      <Description>"[3]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2244</ID>
                                                                      <Description>"[4]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+10</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2245</ID>
                                                                      <Description>"[5]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+14</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2246</ID>
                                                                      <Description>"[6]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+18</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2247</ID>
                                                                      <Description>"[7]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+1C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2248</ID>
                                                                      <Description>"[8]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+20</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2249</ID>
                                                                      <Description>"[9]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+24</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2250</ID>
                                                                      <Description>"[10]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+28</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2251</ID>
                                                                      <Description>"[11]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+2C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2252</ID>
                                                                      <Description>"[12]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+30</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2253</ID>
                                                                      <Description>"[13]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+34</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2254</ID>
                                                                      <Description>"[14]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+38</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2255</ID>
                                                                      <Description>"[15]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+3C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2256</ID>
                                                                      <Description>"[16]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+40</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2257</ID>
                                                                      <Description>"[17]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+44</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2258</ID>
                                                                      <Description>"[18]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+48</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2259</ID>
                                                                      <Description>"[19]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+4C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2260</ID>
                                                                      <Description>"[20]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+50</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2261</ID>
                                                                      <Description>"[21]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+54</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2262</ID>
                                                                      <Description>"[22]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+58</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2263</ID>
                                                                      <Description>"[23]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+5C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2264</ID>
                                                                      <Description>"[24]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+60</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2265</ID>
                                                                      <Description>"[25]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+64</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2266</ID>
                                                                      <Description>"[26]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+68</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2267</ID>
                                                                      <Description>"[27]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+6C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2268</ID>
                                                                      <Description>"[28]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+70</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2269</ID>
                                                                      <Description>"[29]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+74</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2270</ID>
                                                                      <Description>"[30]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+78</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2271</ID>
                                                                      <Description>"[31]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+7C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2272</ID>
                                                                      <Description>"[32]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+80</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2273</ID>
                                                                      <Description>"[33]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+84</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2274</ID>
                                                                      <Description>"[34]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+88</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2275</ID>
                                                                      <Description>"[35]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+8C</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2276</ID>
                                                                      <Description>"[36]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+90</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2277</ID>
                                                                      <Description>"[37]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+94</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2278</ID>
                                                                      <Description>"[38]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+98</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2279</ID>
                                                                      <Description>"[39]"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Float</VariableType>
                                                                      <Address>+9C</Address>
                                                                    </CheatEntry>
                                                                  </CheatEntries>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2280</ID>
                                                                  <Description>"BattleCharacterInfo"</Description>
                                                                  <ShowAsHex>1</ShowAsHex>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+208</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2281</ID>
                                                                  <Description>"DOLLAttackInfo (DOLLAttackInfo)"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+210</Address>
                                                                  <CheatEntries>
                                                                    <CheatEntry>
                                                                      <ID>2282</ID>
                                                                      <Description>"ActionResult.ResultType"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+0</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2283</ID>
                                                                      <Description>"ActionResult.ConsumeResultType"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+1</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2284</ID>
                                                                      <Description>"ActionResult.ActionData.OverriddenActionEffectClass"</Description>
                                                                      <ShowAsHex>1</ShowAsHex>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>8 Bytes</VariableType>
                                                                      <Address>+F0</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2285</ID>
                                                                      <Description>"ActionResult.UseMP"</Description>
                                                                      <ShowAsSigned>1</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+130</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2286</ID>
                                                                      <Description>"ActionResult.UseGold"</Description>
                                                                      <ShowAsSigned>1</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+134</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2287</ID>
                                                                      <Description>"ActionResult.AllActionModules"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+138</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2288</ID>
                                                                      <Description>"ActionResult.HitGroupInfos"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+148</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2289</ID>
                                                                      <Description>"ActionResult.TargetCharacterInfos"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+158</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2290</ID>
                                                                      <Description>"ActionResult.ActionTargetCharacters"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+168</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2291</ID>
                                                                      <Description>"ActionResult.CalcActionParam.RenkeiID"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+178</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2292</ID>
                                                                      <Description>"ActionResult.CalcActionParam.OverrideDamage"</Description>
                                                                      <ShowAsSigned>1</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+180</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2293</ID>
                                                                      <Description>"ActionResult.CalcActionParam.bAdditionalAction"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+184</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2294</ID>
                                                                      <Description>"ActionResult.CalcActionParam.RequestType"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+185</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2295</ID>
                                                                      <Description>"ActionResult.CalcActionParam.StartTurnCount"</Description>
                                                                      <ShowAsSigned>1</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+188</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2296</ID>
                                                                      <Description>"ActionResult.JumonHansyaGameCharacters"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+198</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2297</ID>
                                                                      <Description>"ActionResult.BreathHansyaGameCharacters"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+1A8</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2298</ID>
                                                                      <Description>"ActionResult.ReviveGameCharacters"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+1B8</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2299</ID>
                                                                      <Description>"ActionResult.ActionVoiceID"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+1C8</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2300</ID>
                                                                      <Description>"ActionResult.bDamageReaction0Damage"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1D0</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2301</ID>
                                                                      <Description>"ActionResult.bDamageNoMessage"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1D1</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2302</ID>
                                                                      <Description>"ActionResult.bBunsin"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1D2</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2303</ID>
                                                                      <Description>"ActionResult.bZenmetu"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1D3</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2304</ID>
                                                                      <Description>"CurrentHitGroupCount"</Description>
                                                                      <ShowAsSigned>1</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+1E8</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2305</ID>
                                                                      <Description>"CurrentActionHitRequestCount"</Description>
                                                                      <ShowAsSigned>1</ShowAsSigned>
                                                                      <VariableType>4 Bytes</VariableType>
                                                                      <Address>+1EC</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2306</ID>
                                                                      <Description>"bKoukaDisable"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1F0</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2307</ID>
                                                                      <Description>"bPopupBalloonDisable"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1F1</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2308</ID>
                                                                      <Description>"bPendingDead"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+1F2</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2309</ID>
                                                                      <Description>"AttackTargetInfos"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <GroupHeader>1</GroupHeader>
                                                                      <Address>+1F8</Address>
                                                                    </CheatEntry>
                                                                    <CheatEntry>
                                                                      <ID>2310</ID>
                                                                      <Description>"bUseDefaultHitEffectSub"</Description>
                                                                      <ShowAsSigned>0</ShowAsSigned>
                                                                      <VariableType>Byte</VariableType>
                                                                      <Address>+208</Address>
                                                                    </CheatEntry>
                                                                  </CheatEntries>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2311</ID>
                                                                  <Description>"OddEffectExecHolder"</Description>
                                                                  <ShowAsHex>1</ShowAsHex>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+430</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2312</ID>
                                                                  <Description>"BurstPointControl"</Description>
                                                                  <ShowAsHex>1</ShowAsHex>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+438</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2313</ID>
                                                                  <Description>"KokoroEquipmentController"</Description>
                                                                  <ShowAsHex>1</ShowAsHex>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <GroupHeader>1</GroupHeader>
                                                                  <Address>+440</Address>
                                                                </CheatEntry>
                                                                <CheatEntry>
                                                                  <ID>2314</ID>
                                                                  <Description>"GridSize"</Description>
                                                                  <ShowAsSigned>0</ShowAsSigned>
                                                                  <VariableType>4 Bytes</VariableType>
                                                                  <Address>+938</Address>
                                                                </CheatEntry>
                                                              </CheatEntries>
                                                            </CheatEntry>
                                                          </CheatEntries>
                                                        </CheatEntry>
                                                      </CheatEntries>
                                                    </CheatEntry>
                                                  </CheatEntries>
                                                </CheatEntry>
                                              </CheatEntries>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
  </CheatEntries>
  <UserdefinedSymbols/>
</CheatTable>
