diff --git a/desmume/src/NDSSystem.h b/desmume/src/NDSSystem.h
index 5e5e6e4b3..061f8cd1a 100755
--- a/desmume/src/NDSSystem.h
+++ b/desmume/src/NDSSystem.h
@@ -25,6 +25,7 @@
#include "types.h"
#include "ROMReader.h"
#include "firmware.h"
+#include "render3D.h"
#include "wifi.h"
class CFIRMWARE;
@@ -504,6 +505,10 @@ extern struct TCommonSettings
, GFX3D_Renderer_TextureDeposterize(false)
, GFX3D_Renderer_TextureSmoothing(false)
, GFX3D_TXTHack(false)
+ , OpenGL_Emulation_ShadowPolygon(true)
+ , OpenGL_Emulation_SpecialZeroAlphaBlending(true)
+ , OpenGL_Emulation_DepthEqualsTestTolerance(true)
+ , OpenGL_Emulation_DepthLEqualPolygonFacing(false)
, jit_max_block_size(12)
, loadToMemory(false)
, UseExtBIOS(false)
@@ -561,6 +566,11 @@ extern struct TCommonSettings
bool GFX3D_Renderer_TextureDeposterize;
bool GFX3D_Renderer_TextureSmoothing;
bool GFX3D_TXTHack;
+
+ bool OpenGL_Emulation_ShadowPolygon;
+ bool OpenGL_Emulation_SpecialZeroAlphaBlending;
+ bool OpenGL_Emulation_DepthEqualsTestTolerance;
+ bool OpenGL_Emulation_DepthLEqualPolygonFacing;
bool loadToMemory;
@@ -572,7 +582,7 @@ extern struct TCommonSettings
bool UseExtFirmware;
bool UseExtFirmwareSettings;
- char ExtFirmwarePath[MAX_PATH];
+ char ExtFirmwarePath[MAX_PATH];
char ExtFirmwareUserSettingsPath[MAX_PATH];
bool BootFromFirmware;
FirmwareConfig fwConfig;
diff --git a/desmume/src/OGLRender.cpp b/desmume/src/OGLRender.cpp
index e3683feb0..eefeb36f1 100755
--- a/desmume/src/OGLRender.cpp
+++ b/desmume/src/OGLRender.cpp
@@ -1056,6 +1056,11 @@ OpenGLRenderer::OpenGLRenderer()
willFlipAndConvertFramebufferOnGPU = false;
willUsePerSampleZeroDstPass = false;
+ _emulateShadowPolygon = true;
+ _emulateSpecialZeroAlphaBlending = true;
+ _emulateDepthEqualsTestTolerance = true;
+ _emulateDepthLEqualPolygonFacing = false;
+
// Init OpenGL rendering states
ref = new OGLRenderRef;
memset(ref, 0, sizeof(OGLRenderRef));
@@ -1648,7 +1653,7 @@ size_t OpenGLRenderer::DrawPolygonsForIndexRange(const POLYLIST *polyList, const
if (thePoly.attribute.Mode == POLYGON_MODE_SHADOW)
{
- if (DRAWMODE != OGLPolyDrawMode_ZeroAlphaPass)
+ if ((DRAWMODE != OGLPolyDrawMode_ZeroAlphaPass) && this->_emulateShadowPolygon)
{
this->DrawShadowPolygon(polyPrimitive, vertIndexCount, indexBufferPtr, thePoly.attribute.DepthEqualTest_Enable, thePoly.attribute.TranslucentDepthWrite_Enable, (DRAWMODE == OGLPolyDrawMode_DrawTranslucentPolys), thePoly.attribute.PolygonID);
}
@@ -1697,7 +1702,7 @@ Render3DError OpenGLRenderer::DrawAlphaTexturePolygon(const GLenum polyPrimitive
if (this->isShaderSupported)
{
- if ((DRAWMODE != OGLPolyDrawMode_ZeroAlphaPass) && performDepthEqualTest)
+ if ((DRAWMODE != OGLPolyDrawMode_ZeroAlphaPass) && performDepthEqualTest && this->_emulateDepthEqualsTestTolerance)
{
if (DRAWMODE == OGLPolyDrawMode_DrawTranslucentPolys)
{
@@ -1875,32 +1880,39 @@ Render3DError OpenGLRenderer::DrawAlphaTexturePolygon(const GLenum polyPrimitive
{
glUniform1i(OGLRef.uniformTexDrawOpaque, GL_TRUE);
- if (isPolyFrontFacing)
+ if (this->_emulateDepthLEqualPolygonFacing)
{
- glDepthFunc(GL_EQUAL);
- glStencilFunc(GL_EQUAL, 0x40 | opaquePolyID, 0x40);
- glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
-
- glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
- glDepthMask(GL_FALSE);
- glStencilOp(GL_KEEP, GL_KEEP, GL_ZERO);
- glStencilMask(0x40);
- glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
-
- glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
- glDepthMask(GL_TRUE);
- glDepthFunc(GL_LESS);
- glStencilFunc(GL_ALWAYS, opaquePolyID, 0x3F);
- glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
- glStencilMask(0xFF);
- glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
+ if (isPolyFrontFacing)
+ {
+ glDepthFunc(GL_EQUAL);
+ glStencilFunc(GL_EQUAL, 0x40 | opaquePolyID, 0x40);
+ glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
+
+ glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
+ glDepthMask(GL_FALSE);
+ glStencilOp(GL_KEEP, GL_KEEP, GL_ZERO);
+ glStencilMask(0x40);
+ glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
+
+ glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
+ glDepthMask(GL_TRUE);
+ glDepthFunc(GL_LESS);
+ glStencilFunc(GL_ALWAYS, opaquePolyID, 0x3F);
+ glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
+ glStencilMask(0xFF);
+ glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
+ }
+ else
+ {
+ glStencilFunc(GL_ALWAYS, 0x40 | opaquePolyID, 0x40);
+ glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
+
+ glStencilFunc(GL_ALWAYS, opaquePolyID, 0x3F);
+ }
}
else
{
- glStencilFunc(GL_ALWAYS, 0x40 | opaquePolyID, 0x40);
glDrawElements(polyPrimitive, vertIndexCount, GL_UNSIGNED_SHORT, indexBufferPtr);
-
- glStencilFunc(GL_ALWAYS, opaquePolyID, 0x3F);
}
glUniform1i(OGLRef.uniformTexDrawOpaque, GL_FALSE);
@@ -1926,7 +1938,7 @@ Render3DError OpenGLRenderer::DrawOtherPolygon(const GLenum polyPrimitive,
{
OGLRenderRef &OGLRef = *this->ref;
- if ((DRAWMODE != OGLPolyDrawMode_ZeroAlphaPass) && performDepthEqualTest && this->isShaderSupported)
+ if ((DRAWMODE != OGLPolyDrawMode_ZeroAlphaPass) && performDepthEqualTest && this->_emulateDepthEqualsTestTolerance && this->isShaderSupported)
{
glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
glDepthMask(GL_FALSE);
@@ -1993,7 +2005,7 @@ Render3DError OpenGLRenderer::DrawOtherPolygon(const GLenum polyPrimitive,
glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
glDepthMask(((DRAWMODE == OGLPolyDrawMode_DrawOpaquePolys) || enableAlphaDepthWrite) ? GL_TRUE : GL_FALSE);
}
- else if (DRAWMODE == OGLPolyDrawMode_DrawOpaquePolys)
+ else if ((DRAWMODE == OGLPolyDrawMode_DrawOpaquePolys) && this->_emulateDepthLEqualPolygonFacing)
{
if (isPolyFrontFacing)
{
@@ -2033,8 +2045,12 @@ Render3DError OpenGLRenderer::DrawOtherPolygon(const GLenum polyPrimitive,
Render3DError OpenGLRenderer::ApplyRenderingSettings(const GFX3D_State &renderState)
{
- int oldSelectedMultisampleSize = this->_selectedMultisampleSize;
+ this->_emulateShadowPolygon = CommonSettings.OpenGL_Emulation_ShadowPolygon;
+ this->_emulateSpecialZeroAlphaBlending = CommonSettings.OpenGL_Emulation_SpecialZeroAlphaBlending;
+ this->_emulateDepthEqualsTestTolerance = CommonSettings.OpenGL_Emulation_DepthEqualsTestTolerance;
+ this->_emulateDepthLEqualPolygonFacing = CommonSettings.OpenGL_Emulation_DepthLEqualPolygonFacing;
+ int oldSelectedMultisampleSize = this->_selectedMultisampleSize;
this->_selectedMultisampleSize = CommonSettings.GFX3D_Renderer_MultisampleSize;
this->_enableMultisampledRendering = ((this->_selectedMultisampleSize >= 2) && this->isMultisampledFBOSupported);
@@ -3690,8 +3706,7 @@ Render3DError OpenGLRenderer_1_2::ZeroDstAlphaPass(const POLYLIST *polyList, con
glDisable(GL_BLEND);
glEnable(GL_STENCIL_TEST);
glDisable(GL_DEPTH_TEST);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glStencilFunc(GL_ALWAYS, 0x40, 0x40);
glDrawBuffer(GL_NONE);
@@ -3856,8 +3871,7 @@ Render3DError OpenGLRenderer_1_2::ReadBackPixels()
glDisable(GL_DEPTH_TEST);
glDisable(GL_STENCIL_TEST);
glDisable(GL_BLEND);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, OGLRef.vboPostprocessVtxID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, OGLRef.iboPostprocessIndexID);
@@ -4115,7 +4129,7 @@ Render3DError OpenGLRenderer_1_2::RenderGeometry(const GFX3D_State &renderState,
glClear(GL_STENCIL_BUFFER_BIT);
glStencilMask(0xFF);
- if (this->_needsZeroDstAlphaPass)
+ if (this->_needsZeroDstAlphaPass && this->_emulateSpecialZeroAlphaBlending)
{
if (polyList->opaqueCount == 0)
{
@@ -4197,11 +4211,8 @@ Render3DError OpenGLRenderer_1_2::RenderEdgeMarking(const u16 *colorTable, const
// Set up the postprocessing states
glViewport(0, 0, this->_framebufferWidth, this->_framebufferHeight);
- glDisable(GL_BLEND);
glDisable(GL_DEPTH_TEST);
- glEnable(GL_STENCIL_TEST);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, OGLRef.vboPostprocessVtxID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, OGLRef.iboPostprocessIndexID);
@@ -4218,31 +4229,45 @@ Render3DError OpenGLRenderer_1_2::RenderEdgeMarking(const u16 *colorTable, const
glVertexAttribPointer(OGLVertexAttributeID_TexCoord0, 2, GL_FLOAT, GL_FALSE, 0, (const GLvoid *)(sizeof(GLfloat) * 8));
}
- // Pass 1: Determine the pixels with zero alpha
- glDrawBuffer(GL_NONE);
- glStencilFunc(GL_ALWAYS, 0x40, 0x40);
- glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
- glStencilMask(0x40);
- glClearStencil(0);
- glClear(GL_STENCIL_BUFFER_BIT);
-
- glUseProgram(OGLRef.programGeometryZeroDstAlphaID);
- glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
-
- // Pass 2: Unblended edge mark colors to zero-alpha pixels
- glDrawBuffer(GL_COLOR_ATTACHMENT0_EXT);
- glUseProgram(OGLRef.programEdgeMarkID);
- glUniform2f(OGLRef.uniformFramebufferSize, this->_framebufferWidth, this->_framebufferHeight);
- glUniform4fv(OGLRef.uniformStateEdgeColor, 8, oglColor);
- glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_FALSE);
- glStencilFunc(GL_NOTEQUAL, 0x40, 0x40);
- glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
-
- // Pass 3: Blended edge mark
- glEnable(GL_BLEND);
- glDisable(GL_STENCIL_TEST);
- glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
- glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+ if (this->_emulateSpecialZeroAlphaBlending)
+ {
+ // Pass 1: Determine the pixels with zero alpha
+ glDrawBuffer(GL_NONE);
+ glDisable(GL_BLEND);
+ glEnable(GL_STENCIL_TEST);
+ glStencilFunc(GL_ALWAYS, 0x40, 0x40);
+ glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
+ glStencilMask(0x40);
+ glClearStencil(0);
+ glClear(GL_STENCIL_BUFFER_BIT);
+
+ glUseProgram(OGLRef.programGeometryZeroDstAlphaID);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+
+ // Pass 2: Unblended edge mark colors to zero-alpha pixels
+ glDrawBuffer(GL_COLOR_ATTACHMENT0_EXT);
+ glUseProgram(OGLRef.programEdgeMarkID);
+ glUniform2f(OGLRef.uniformFramebufferSize, this->_framebufferWidth, this->_framebufferHeight);
+ glUniform4fv(OGLRef.uniformStateEdgeColor, 8, oglColor);
+ glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_FALSE);
+ glStencilFunc(GL_NOTEQUAL, 0x40, 0x40);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+
+ // Pass 3: Blended edge mark
+ glEnable(GL_BLEND);
+ glDisable(GL_STENCIL_TEST);
+ glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+ }
+ else
+ {
+ glUseProgram(OGLRef.programEdgeMarkID);
+ glUniform2f(OGLRef.uniformFramebufferSize, this->_framebufferWidth, this->_framebufferHeight);
+ glUniform4fv(OGLRef.uniformStateEdgeColor, 8, oglColor);
+ glDrawBuffer(GL_COLOR_ATTACHMENT0_EXT);
+ glDisable(GL_STENCIL_TEST);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+ }
if (this->isVAOSupported)
{
@@ -4296,8 +4321,7 @@ Render3DError OpenGLRenderer_1_2::RenderFog(const u8 *densityTable, const u32 co
glDisable(GL_DEPTH_TEST);
glDisable(GL_STENCIL_TEST);
glDisable(GL_BLEND);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, OGLRef.vboPostprocessVtxID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, OGLRef.iboPostprocessIndexID);
@@ -4527,29 +4551,32 @@ Render3DError OpenGLRenderer_1_2::SetupPolygon(const POLY &thePoly, bool treatAs
// Handle drawing states for the polygon
if (thePoly.attribute.Mode == POLYGON_MODE_SHADOW)
{
- // Set up shadow polygon states.
- //
- // See comments in DrawShadowPolygon() for more information about
- // how this 5-pass process works in OpenGL.
- if (thePoly.attribute.PolygonID == 0)
+ if (this->_emulateShadowPolygon)
{
- // 1st pass: Use stencil buffer bit 7 (0x80) for the shadow volume mask.
- // Write only on depth-fail.
- glStencilFunc(GL_ALWAYS, 0x80, 0x80);
- glStencilOp(GL_KEEP, GL_REPLACE, GL_KEEP);
- glStencilMask(0x80);
+ // Set up shadow polygon states.
+ //
+ // See comments in DrawShadowPolygon() for more information about
+ // how this 5-pass process works in OpenGL.
+ if (thePoly.attribute.PolygonID == 0)
+ {
+ // 1st pass: Use stencil buffer bit 7 (0x80) for the shadow volume mask.
+ // Write only on depth-fail.
+ glStencilFunc(GL_ALWAYS, 0x80, 0x80);
+ glStencilOp(GL_KEEP, GL_REPLACE, GL_KEEP);
+ glStencilMask(0x80);
+ }
+ else
+ {
+ // 2nd pass: Compare stencil buffer bits 0-5 (0x3F) with this polygon's ID. If this stencil
+ // test fails, remove the fragment from the shadow volume mask by clearing bit 7.
+ glStencilFunc(GL_NOTEQUAL, thePoly.attribute.PolygonID, 0x3F);
+ glStencilOp(GL_ZERO, GL_KEEP, GL_KEEP);
+ glStencilMask(0x80);
+ }
+
+ glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
+ glDepthMask(GL_FALSE);
}
- else
- {
- // 2nd pass: Compare stencil buffer bits 0-5 (0x3F) with this polygon's ID. If this stencil
- // test fails, remove the fragment from the shadow volume mask by clearing bit 7.
- glStencilFunc(GL_NOTEQUAL, thePoly.attribute.PolygonID, 0x3F);
- glStencilOp(GL_ZERO, GL_KEEP, GL_KEEP);
- glStencilMask(0x80);
- }
-
- glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
- glDepthMask(GL_FALSE);
}
else
{
diff --git a/desmume/src/OGLRender.h b/desmume/src/OGLRender.h
index aad453153..84d6085e8 100755
--- a/desmume/src/OGLRender.h
+++ b/desmume/src/OGLRender.h
@@ -636,6 +636,11 @@ protected:
bool willFlipAndConvertFramebufferOnGPU;
bool willUsePerSampleZeroDstPass;
+ bool _emulateShadowPolygon;
+ bool _emulateSpecialZeroAlphaBlending;
+ bool _emulateDepthEqualsTestTolerance;
+ bool _emulateDepthLEqualPolygonFacing;
+
FragmentColor *_mappedFramebuffer;
FragmentColor *_workingTextureUnpackBuffer;
bool _pixelReadNeedsFinish;
diff --git a/desmume/src/OGLRender_3_2.cpp b/desmume/src/OGLRender_3_2.cpp
index 1f8688d94..029be9fa7 100644
--- a/desmume/src/OGLRender_3_2.cpp
+++ b/desmume/src/OGLRender_3_2.cpp
@@ -1385,8 +1385,7 @@ Render3DError OpenGLRenderer_3_2::ZeroDstAlphaPass(const POLYLIST *polyList, con
glDisable(GL_BLEND);
glEnable(GL_STENCIL_TEST);
glDisable(GL_DEPTH_TEST);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glStencilFunc(GL_ALWAYS, 0x40, 0x40);
glDrawBuffer(GL_NONE);
@@ -1503,8 +1502,7 @@ Render3DError OpenGLRenderer_3_2::ReadBackPixels()
glDisable(GL_DEPTH_TEST);
glDisable(GL_STENCIL_TEST);
glDisable(GL_BLEND);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, OGLRef.vboPostprocessVtxID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, OGLRef.iboPostprocessIndexID);
@@ -1701,39 +1699,48 @@ Render3DError OpenGLRenderer_3_2::RenderEdgeMarking(const u16 *colorTable, const
// Set up the postprocessing states
glViewport(0, 0, this->_framebufferWidth, this->_framebufferHeight);
- glDisable(GL_BLEND);
glDisable(GL_DEPTH_TEST);
- glEnable(GL_STENCIL_TEST);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, OGLRef.vboPostprocessVtxID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, OGLRef.iboPostprocessIndexID);
glBindVertexArray(OGLRef.vaoPostprocessStatesID);
- // Pass 1: Determine the pixels with zero alpha
- glDrawBuffer(GL_NONE);
- glStencilFunc(GL_ALWAYS, 0x40, 0x40);
- glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
- glStencilMask(0x40);
- glDepthMask(GL_FALSE);
- glClearBufferfi(GL_DEPTH_STENCIL, 0, 0.0f, 0);
-
- glUseProgram(OGLRef.programGeometryZeroDstAlphaID);
- glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
-
- // Pass 2: Unblended edge mark colors to zero-alpha pixels
- glDrawBuffer(GL_COLOR_ATTACHMENT0);
- glUseProgram(OGLRef.programEdgeMarkID);
- glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_FALSE);
- glStencilFunc(GL_NOTEQUAL, 0x40, 0x40);
- glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
-
- // Pass 3: Blended edge mark
- glEnable(GL_BLEND);
- glDisable(GL_STENCIL_TEST);
- glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
- glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+ if (this->_emulateSpecialZeroAlphaBlending)
+ {
+ // Pass 1: Determine the pixels with zero alpha
+ glDrawBuffer(GL_NONE);
+ glDisable(GL_BLEND);
+ glEnable(GL_STENCIL_TEST);
+ glStencilFunc(GL_ALWAYS, 0x40, 0x40);
+ glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
+ glStencilMask(0x40);
+ glDepthMask(GL_FALSE);
+ glClearBufferfi(GL_DEPTH_STENCIL, 0, 0.0f, 0);
+
+ glUseProgram(OGLRef.programGeometryZeroDstAlphaID);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+
+ // Pass 2: Unblended edge mark colors to zero-alpha pixels
+ glDrawBuffer(GL_COLOR_ATTACHMENT0);
+ glUseProgram(OGLRef.programEdgeMarkID);
+ glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_FALSE);
+ glStencilFunc(GL_NOTEQUAL, 0x40, 0x40);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+
+ // Pass 3: Blended edge mark
+ glEnable(GL_BLEND);
+ glDisable(GL_STENCIL_TEST);
+ glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+ }
+ else
+ {
+ glUseProgram(OGLRef.programEdgeMarkID);
+ glDrawBuffer(GL_COLOR_ATTACHMENT0);
+ glDisable(GL_STENCIL_TEST);
+ glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, 0);
+ }
glBindVertexArray(0);
@@ -1755,8 +1762,7 @@ Render3DError OpenGLRenderer_3_2::RenderFog(const u8 *densityTable, const u32 co
glDisable(GL_DEPTH_TEST);
glDisable(GL_STENCIL_TEST);
glDisable(GL_BLEND);
- glEnable(GL_CULL_FACE);
- glCullFace(GL_BACK);
+ glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, OGLRef.vboPostprocessVtxID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, OGLRef.iboPostprocessIndexID);
@@ -1900,29 +1906,32 @@ Render3DError OpenGLRenderer_3_2::SetupPolygon(const POLY &thePoly, bool treatAs
// Handle drawing states for the polygon
if (thePoly.attribute.Mode == POLYGON_MODE_SHADOW)
{
- // Set up shadow polygon states.
- //
- // See comments in DrawShadowPolygon() for more information about
- // how this 5-pass process works in OpenGL.
- if (thePoly.attribute.PolygonID == 0)
+ if (this->_emulateShadowPolygon)
{
- // 1st pass: Use stencil buffer bit 7 (0x80) for the shadow volume mask.
- // Write only on depth-fail.
- glStencilFunc(GL_ALWAYS, 0x80, 0x80);
- glStencilOp(GL_KEEP, GL_REPLACE, GL_KEEP);
- glStencilMask(0x80);
+ // Set up shadow polygon states.
+ //
+ // See comments in DrawShadowPolygon() for more information about
+ // how this 5-pass process works in OpenGL.
+ if (thePoly.attribute.PolygonID == 0)
+ {
+ // 1st pass: Use stencil buffer bit 7 (0x80) for the shadow volume mask.
+ // Write only on depth-fail.
+ glStencilFunc(GL_ALWAYS, 0x80, 0x80);
+ glStencilOp(GL_KEEP, GL_REPLACE, GL_KEEP);
+ glStencilMask(0x80);
+ }
+ else
+ {
+ // 2nd pass: Compare stencil buffer bits 0-5 (0x3F) with this polygon's ID. If this stencil
+ // test fails, remove the fragment from the shadow volume mask by clearing bit 7.
+ glStencilFunc(GL_NOTEQUAL, thePoly.attribute.PolygonID, 0x3F);
+ glStencilOp(GL_ZERO, GL_KEEP, GL_KEEP);
+ glStencilMask(0x80);
+ }
+
+ glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
+ glDepthMask(GL_FALSE);
}
- else
- {
- // 2nd pass: Compare stencil buffer bits 0-5 (0x3F) with this polygon's ID. If this stencil
- // test fails, remove the fragment from the shadow volume mask by clearing bit 7.
- glStencilFunc(GL_NOTEQUAL, thePoly.attribute.PolygonID, 0x3F);
- glStencilOp(GL_ZERO, GL_KEEP, GL_KEEP);
- glStencilMask(0x80);
- }
-
- glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
- glDepthMask(GL_FALSE);
}
else
{
diff --git a/desmume/src/frontend/cocoa/DefaultUserPrefs.plist b/desmume/src/frontend/cocoa/DefaultUserPrefs.plist
index 0019d147e..41ec9c912 100644
--- a/desmume/src/frontend/cocoa/DefaultUserPrefs.plist
+++ b/desmume/src/frontend/cocoa/DefaultUserPrefs.plist
@@ -864,6 +864,14 @@
Render3D_Threads
0
+ Render3D_OpenGL_EmulateShadowPolygon
+
+ Render3D_OpenGL_EmulateSpecialZeroAlphaBlending
+
+ Render3D_OpenGL_EmulateDepthEqualTestTolerance
+
+ Render3D_OpenGL_EmulateDepthLEqualPolygonFacing
+
RomInfoPanel_SectionViewState
AVCaptureTool_DirectoryPath
diff --git a/desmume/src/frontend/cocoa/cocoa_GPU.h b/desmume/src/frontend/cocoa/cocoa_GPU.h
index 7062390ea..78415abc6 100644
--- a/desmume/src/frontend/cocoa/cocoa_GPU.h
+++ b/desmume/src/frontend/cocoa/cocoa_GPU.h
@@ -168,6 +168,10 @@ typedef std::map DisplayLinkFlushTimeLimitMap;
@property (assign) BOOL render3DTextureSmoothing;
@property (assign) NSUInteger render3DTextureScalingFactor;
@property (assign) BOOL render3DFragmentSamplingHack;
+@property (assign) BOOL openGLEmulateShadowPolygon;
+@property (assign) BOOL openGLEmulateSpecialZeroAlphaBlending;
+@property (assign) BOOL openGLEmulateDepthEqualsTestTolerance;
+@property (assign) BOOL openGLEmulateDepthLEqualPolygonFacing;
#ifdef ENABLE_SHARED_FETCH_OBJECT
@property (readonly, nonatomic) GPUClientFetchObject *fetchObject;
diff --git a/desmume/src/frontend/cocoa/cocoa_GPU.mm b/desmume/src/frontend/cocoa/cocoa_GPU.mm
index 7ba7c6d02..f7c999446 100644
--- a/desmume/src/frontend/cocoa/cocoa_GPU.mm
+++ b/desmume/src/frontend/cocoa/cocoa_GPU.mm
@@ -121,6 +121,10 @@ public:
@dynamic render3DTextureSmoothing;
@dynamic render3DTextureScalingFactor;
@dynamic render3DFragmentSamplingHack;
+@dynamic openGLEmulateShadowPolygon;
+@dynamic openGLEmulateSpecialZeroAlphaBlending;
+@dynamic openGLEmulateDepthEqualsTestTolerance;
+@dynamic openGLEmulateDepthLEqualPolygonFacing;
#ifdef ENABLE_SHARED_FETCH_OBJECT
@synthesize fetchObject;
@@ -719,6 +723,70 @@ public:
return state;
}
+- (void) setOpenGLEmulateShadowPolygon:(BOOL)state
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ CommonSettings.OpenGL_Emulation_ShadowPolygon = (state) ? true : false;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+}
+
+- (BOOL) openGLEmulateShadowPolygon
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ const BOOL state = (CommonSettings.OpenGL_Emulation_ShadowPolygon) ? YES : NO;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+
+ return state;
+}
+
+- (void) setOpenGLEmulateSpecialZeroAlphaBlending:(BOOL)state
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ CommonSettings.OpenGL_Emulation_SpecialZeroAlphaBlending = (state) ? true : false;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+}
+
+- (BOOL) openGLEmulateSpecialZeroAlphaBlending
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ const BOOL state = (CommonSettings.OpenGL_Emulation_SpecialZeroAlphaBlending) ? YES : NO;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+
+ return state;
+}
+
+- (void) setOpenGLEmulateDepthEqualsTestTolerance:(BOOL)state
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ CommonSettings.OpenGL_Emulation_DepthEqualsTestTolerance = (state) ? true : false;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+}
+
+- (BOOL) openGLEmulateDepthEqualsTestTolerance
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ const BOOL state = (CommonSettings.OpenGL_Emulation_DepthEqualsTestTolerance) ? YES : NO;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+
+ return state;
+}
+
+- (void) setOpenGLEmulateDepthLEqualPolygonFacing:(BOOL)state
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ CommonSettings.OpenGL_Emulation_DepthLEqualPolygonFacing = (state) ? true : false;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+}
+
+- (BOOL) openGLEmulateDepthLEqualPolygonFacing
+{
+ gpuEvent->ApplyRender3DSettingsLock();
+ const BOOL state = (CommonSettings.OpenGL_Emulation_DepthLEqualPolygonFacing) ? YES : NO;
+ gpuEvent->ApplyRender3DSettingsUnlock();
+
+ return state;
+}
+
- (void) setLayerMainGPU:(BOOL)gpuState
{
gpuEvent->ApplyGPUSettingsLock();
diff --git a/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.strings b/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.strings
index d374c0ee8..4dee8d9dc 100644
Binary files a/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.strings and b/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.strings differ
diff --git a/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.xib b/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.xib
index 8ff6bf162..169431ee0 100644
--- a/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.xib
+++ b/desmume/src/frontend/cocoa/translations/English.lproj/MainMenu.xib
@@ -1,6529 +1,6751 @@
-
- 1050
- 13F1911
- 851
- 1265.21
- 698.00
-
-
-
-
-
+
+ {{164, 6}, {146, 72}}
+
+ _NS:18
+ {0, 0}
+
+ 67108864
+ 0
+ Display Order
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+ {474, 167}
+ NSView
+
+
+
+
+ {474, 167}
+ {0, 167}
+ {474, 167}
+ 1
+ 0.0
+ 0.0
+
+
+
+
+ MacAVCaptureToolDelegate
+
+
+ 279
+ 2
+ {{230, 202}, {173, 339}}
+ -461896704
+ GPU Layers
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+
+ 256
+
+ YES
+
+
+
+ 12
+
+ YES
+
+
+
+ 274
+
+ YES
+
+
+
+ 268
+ {{15, 112}, {108, 18}}
+
+ YES
+
+ -2080374784
+ 131072
+ GPU (All Layers)
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 92}, {46, 18}}
+
+ 1
+ YES
+
+ -2080374784
+ 131072
+ BG0
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 72}, {46, 18}}
+
+ 2
+ YES
+
+ -2080374784
+ 131072
+ BG1
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 52}, {46, 18}}
+
+ 3
+ YES
+
+ -2080374784
+ 131072
+ BG2
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 32}, {46, 18}}
+
+ 4
+ YES
+
+ -2080374784
+ 131072
+ BG3
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 12}, {46, 18}}
+
+ 5
+ YES
+
+ -2080374784
+ 131072
+ OBJ
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+ {{1, 1}, {137, 138}}
+
+
+
+ {{17, 174}, {139, 154}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Main
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+
+
+ 12
+
+ YES
+
+
+
+ 274
+
+ YES
+
+
+
+ 268
+ {{15, 112}, {108, 18}}
+
+ 6
+ YES
+
+ -2080374784
+ 131072
+ GPU (All Layers)
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 92}, {46, 18}}
+
+ 7
+ YES
+
+ -2080374784
+ 131072
+ BG0
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 72}, {46, 18}}
+
+ 8
+ YES
+
+ -2080374784
+ 131072
+ BG1
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 52}, {46, 18}}
+
+ 9
+ YES
+
+ -2080374784
+ 131072
+ BG2
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 32}, {46, 18}}
+
+ 10
+ YES
+
+ -2080374784
+ 131072
+ BG3
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{33, 12}, {46, 18}}
+
+ 11
+ YES
+
+ -2080374784
+ 131072
+ OBJ
+
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+ {{1, 1}, {137, 138}}
+
+
+
+ {{17, 16}, {139, 154}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Sub
+
+
+
+
+
+ 1
+ 0
+ 2
+ NO
+
+
+ {173, 339}
+
+ {{0, 0}, {1920, 1177}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ GPULayersPanel
+ YES
+
+
+ 279
+ 2
+ {{162, 360}, {290, 119}}
+ -461896704
+ GDB Stub Control
+ NSPanel
+
+
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+
+
+
+ 256
+
+ YES
+
+
+
+ 268
+
+ YES
+
+ {{190, 80}, {80, 19}}
+
+ _NS:817
+ YES
+
+ -1804599231
+ 272761856
+
+
+
+ YES
+
+ YES
+ allowsFloats
+ formatterBehavior
+ locale
+ maximum
+ maximumFractionDigits
+ maximumIntegerDigits
+ minimum
+ negativeInfinitySymbol
+ nilSymbol
+ numberStyle
+ positiveInfinitySymbol
+ usesGroupingSeparator
+
+
+ YES
+
+
+
+
+
+
+
+ -∞
+
+
+ +∞
+
+
+
+ #0
+ #0
+
+
+
+
+
+
+
+ NaN
+
+
+
+
+
+ 3
+ YES
+ YES
+ YES
+
+ .
+ ,
+ NO
+ NO
+ NO
+
+ _NS:817
+
+ YES
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+
+ YES
+
+ {{190, 55}, {80, 19}}
+
+ _NS:817
+ YES
+
+ -1804599231
+ 272761856
+
+
+
+ YES
+
+ YES
+ allowsFloats
+ formatterBehavior
+ locale
+ maximum
+ maximumFractionDigits
+ maximumIntegerDigits
+ minimum
+ negativeInfinitySymbol
+ nilSymbol
+ numberStyle
+ positiveInfinitySymbol
+ usesGroupingSeparator
+
+
+ YES
+
+
+
+
+
+
+
+ -∞
+
+
+ +∞
+
+
+
+ #0
+ #0
+
+
+
+
+
+
+
+ NaN
+
+
+
+
+
+ 3
+ YES
+ YES
+ YES
+
+ .
+ ,
+ NO
+ NO
+ NO
+
+ _NS:817
+
+ YES
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{17, 80}, {112, 18}}
+
+ _NS:682
+ YES
+
+ 67108864
+ 131072
+ Enable for ARM9
+
+ _NS:682
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{17, 55}, {112, 18}}
+
+ _NS:682
+ YES
+
+ 67108864
+ 131072
+ Enable for ARM7
+
+ _NS:682
+
+ 1211912448
+ 2
+
+
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{147, 82}, {38, 14}}
+
+ _NS:4068
+ YES
+
+ 68157504
+ 71435264
+ Port:
+
+ _NS:4068
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{147, 57}, {38, 14}}
+
+ _NS:4068
+ YES
+
+ 68157504
+ 71435264
+ Port:
+
+ _NS:4068
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{97, 18}, {100, 19}}
+
+ _NS:2460
+ YES
+
+ -2080374784
+ 134217728
+ Start
+
+ _NS:2460
+
+ -2038153216
+ 164
+ Stop
+
+ 400
+ 75
+
+ NO
+
+
+ {290, 119}
+ _NS:103
+
+ {{0, 0}, {1920, 1177}}
+ {1.7976931348623157e+308, 1.7976931348623157e+308}
+ GDBStubControlPanel
+ NO
+
+
+
+
+ 268
+
+ YES
+
+
+
+
+ 268
+ {{17, 11}, {176, 17}}
+
+ YES
+
+ 68157504
+ 71304192
+ Select ROM Save Format:
+
+
+
+
+
+ NO
+ 2
+
+
+ {450, 35}
+ NSView
+
+
+ 7
+ 2
+ {{88, 206}, {580, 592}}
+ 1685586944
+ Troubleshooting Form
+ NSWindow
+
+
+ {580, 592}
+ {580, 592}
+
+
+
+ 256
+ {580, 592}
+
+ {{0, 0}, {1920, 1177}}
+ {580, 614}
+ {580, 614}
+ AppTroubleshootingFormWindow
+ YES
+
+
+
+
+ 268
+
+ YES
+
+
+
+ 1292
+ {{364, 339}, {32, 32}}
+
+ 28682
+ 100
+
+
+
+
+ 265
+ {{396, 343}, {168, 28}}
+
+ YES
+
+ 69206017
+ 272764928
+ TmFtZToKU2VyaWFsOg
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 265
+
+ YES
+
+ YES
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ NSFilenamesPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ com.apple.NSFilePromiseItemMetaData
+ com.apple.pasteboard.promised-file-content-type
+ dyn.ah62d4rv4gu8yc6durvwwa3xmrvw1gkdusm1044pxqyuha2pxsvw0e55bsmwca7d3sbwu
+
+
+ {{364, 341}, {30, 30}}
+
+ YES
+
+ 134217728
+ 33554432
+
+ 0
+ 3
+ 0
+ NO
+
+ NO
+ YES
+
+
+
+
+ 256
+
+ YES
+
+
+
+ 274
+
+ YES
+
+
+
+ 274
+
+ YES
+
+ YES
+ Apple HTML pasteboard type
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ Apple URL pasteboard type
+ CorePasteboardFlavorType 0x6D6F6F76
+ NSColor pasteboard type
+ NSFilenamesPboardType
+ NSStringPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT RTFD pasteboard type
+ NeXT Rich Text Format v1.0 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ NeXT font pasteboard type
+ NeXT ruler pasteboard type
+ WebURLsWithTitlesPboardType
+ public.url
+
+
+ {538, 202}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 538
+ 1
+
+
+ NO
+ 100675459
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 1
+
+ 70
+ {538, 10000000}
+
+
+
+ {{1, 1}, {538, 202}}
+
+
+
+
+
+ 4
+ YES
+
+
+
+
+ 256
+ {{523, 1}, {16, 202}}
+
+ NO
+ _doScroller:
+
+
+ _doScroller:
+ 0.99248120300751874
+
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ _doScroller:
+
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 61}, {540, 204}}
+
+
+
+ YES
+
+ 1
+ _panWithGestureRecognizer:
+
+ 0
+ 1
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+
+
+ 288
+ {{125, 16}, {438, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ And that's it! Click Continue to review your information before submitting it to the DeSmuME team.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 34
+ {{12, 50}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+
+ 269
+ {{17, 273}, {546, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ In the field below, briefly describe your situation and what you need help with. (Please be as specific as possible! It will help us to understand your situation better.)
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 309}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us what you need help with.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 10
+ {{12, 332}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+
+ 269
+ {{17, 489}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ Do you need help with using DeSmuME? If so, it never hurts to ask! Just fill out this form and DeSmuME will prepare all the troubleshooting information for you to send to the DeSmuME team. This information will help us respond to your issue quicker and easier.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 539}, {546, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ DeSmuME Technical Support Request Form
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 10
+ {{12, 478}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+
+ 269
+ {{17, 455}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us about the ROM.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 405}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ If your issue is related to a specific ROM, enter its name and serial in the fields below. Otherwise, you may leave these fields blank. (It may be easier to load the ROM first, then click Use Currently Loaded ROM to let DeSmuME fill in this information for you.)
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{17, 347}, {84, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Serial:
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{17, 377}, {84, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Name:
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 266
+ {{106, 345}, {250, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 2
+
+
+
+
+ 266
+ {{106, 375}, {250, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 2
+
+
+
+
+ 265
+ {{358, 370}, {209, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Use Currently Loaded ROM
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 288
+ {{14, 12}, {112, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Continue
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+ {580, 567}
+ NSView
+
+
+
+
+ 268
+
+ YES
+
+
+
+ 1292
+ {{363, 339}, {32, 32}}
+
+ 28682
+ 100
+
+
+
+
+ 265
+ {{396, 343}, {168, 28}}
+
+ YES
+
+ 69206017
+ 272764928
+ TmFtZToKU2VyaWFsOg
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 265
+
+ YES
+
+ YES
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ NSFilenamesPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ com.apple.NSFilePromiseItemMetaData
+ com.apple.pasteboard.promised-file-content-type
+ dyn.ah62d4rv4gu8yc6durvwwa3xmrvw1gkdusm1044pxqyuha2pxsvw0e55bsmwca7d3sbwu
+
+
+ {{364, 341}, {30, 30}}
+
+ YES
+
+ 134217728
+ 33554432
+
+ 0
+ 3
+ 0
+ NO
+
+ NO
+ YES
+
+
+
+
+ 256
+
+ YES
+
+
+
+ 274
+
+ YES
+
+
+
+ 274
+
+ YES
+
+ YES
+ Apple HTML pasteboard type
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ Apple URL pasteboard type
+ CorePasteboardFlavorType 0x6D6F6F76
+ NSColor pasteboard type
+ NSFilenamesPboardType
+ NSStringPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT RTFD pasteboard type
+ NeXT Rich Text Format v1.0 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ NeXT font pasteboard type
+ NeXT ruler pasteboard type
+ WebURLsWithTitlesPboardType
+ public.url
+
+
+ {539, 80}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 539
+ 1
+
+
+ NO
+ 100675459
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 1
+
+ 70
+ {539, 10000000}
+
+
+
+ {{1, 1}, {539, 80}}
+
+
+
+
+
+ 4
+ YES
+
+
+
+
+ 256
+ {{524, 1}, {16, 80}}
+
+ NO
+ _doScroller:
+
+
+ _doScroller:
+ 0.99248120300751874
+
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ _doScroller:
+
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 61}, {541, 82}}
+
+
+
+ YES
+
+ 1
+ _panWithGestureRecognizer:
+
+ 0
+ 1
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+
+
+ 256
+
+ YES
+
+
+
+ 274
+
+ YES
+
+
+
+ 274
+
+ YES
+
+ YES
+ Apple HTML pasteboard type
+ Apple PDF pasteboard type
+ Apple PICT pasteboard type
+ Apple PNG pasteboard type
+ Apple URL pasteboard type
+ CorePasteboardFlavorType 0x6D6F6F76
+ NSColor pasteboard type
+ NSFilenamesPboardType
+ NSStringPboardType
+ NeXT Encapsulated PostScript v1.2 pasteboard type
+ NeXT RTFD pasteboard type
+ NeXT Rich Text Format v1.0 pasteboard type
+ NeXT TIFF v4.0 pasteboard type
+ NeXT font pasteboard type
+ NeXT ruler pasteboard type
+ WebURLsWithTitlesPboardType
+ public.url
+
+
+ {538, 80}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 538
+ 1
+
+
+ NO
+ 100675459
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 1
+
+ 70
+ {538, 10000000}
+
+
+
+ {{1, 1}, {538, 80}}
+
+
+
+
+
+ 4
+ YES
+
+
+
+
+ 256
+ {{523, 1}, {16, 80}}
+
+ NO
+ _doScroller:
+
+
+ _doScroller:
+ 0.99248120300751874
+
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ _doScroller:
+
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 167}, {540, 82}}
+
+
+
+ YES
+
+ 1
+ _panWithGestureRecognizer:
+
+ 0
+ 1
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+
+
+ 288
+ {{125, 16}, {438, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ And that's it! Click Continue to review your information before submitting it to the DeSmuME team.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 34
+ {{12, 50}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+
+ 256
+ {{17, 145}, {206, 14}}
+
+ YES
+
+ 68157504
+ 272761856
+ Expected Behavior:
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 256
+ {{17, 251}, {206, 14}}
+
+ YES
+
+ 68157504
+ 272761856
+ Observed Behavior:
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 273}, {546, 28}}
+
+ YES
+
+ 67108864
+ 272760832
+ In the fields below, give us specific details on what you OBSERVED happened, and then what you EXPECTED to happen.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 309}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us what is happening.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 10
+ {{12, 332}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+
+ 269
+ {{17, 489}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ Think you just spotted a bug with DeSmuME? Be sure to let us know! Just fill out this form and DeSmuME will prepare all the troubleshooting information for you to send to the DeSmuME team. This information will help us respond to your bug report quicker and easier.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 539}, {546, 17}}
+
+ YES
+
+ 68157504
+ 138413056
+ DeSmuME Bug Report Form
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 10
+ {{12, 478}, {556, 5}}
+
+ {0, 0}
+
+ 67108864
+ 0
+ Box
+
+
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+
+ 269
+ {{17, 455}, {546, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ Tell us about the ROM.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 269
+ {{17, 405}, {546, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ If your bug is related to a specific ROM, enter its name and serial in the fields below. Otherwise, you may leave these fields blank. (It may be easier to load the ROM first, then click Use Currently Loaded ROM to let DeSmuME fill in this information for you.)
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{17, 347}, {83, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Serial:
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{17, 377}, {83, 17}}
+
+ YES
+
+ 68157504
+ 272630784
+ ROM Name:
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 266
+ {{105, 345}, {250, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 2
+
+
+
+
+ 266
+ {{105, 375}, {250, 22}}
+
+ YES
+
+ -1804599231
+ 272630784
+
+
+
+ YES
+
+
+
+ NO
+ 2
+
+
+
+
+ 265
+ {{358, 370}, {209, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Use Currently Loaded ROM
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 288
+ {{14, 12}, {112, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Continue
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+ {580, 567}
+ NSView
+
+
+
+
+ 268
+
+ YES
+
+
+
+ 268
+ {{342, 55}, {224, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Copy Info to Clipboard
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{17, 52}, {326, 42}}
+
+ YES
+
+ 67108864
+ 272760832
+ Please copy-paste the above information into our tech support webpage. This will ensure the fastest response time from us.
+
+
+
+
+
+ NO
+ 2
+
+
+
+
+ 268
+ {{342, 12}, {224, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Go to Tech Support Webpage
+
+
+ -2038284288
+ 129
+
+ DQ
+ 200
+ 25
+
+ NO
+
+
+
+
+ 268
+ {{14, 12}, {112, 32}}
+
+ YES
+
+ 67108864
+ 134217728
+ Back
+
+
+ -2038284288
+ 129
+
+
+ 200
+ 25
+
+ NO
+
+
+
+
+ 256
+
+ YES
+
+
+
+ 274
+
+ YES
+
+
+
+ 274
+ {538, 443}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 38
+
+
+
+ 538
+ 1
+
+
+ NO
+ 100665601
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSCursor
+ NSUnderline
+
+
+ YES
+
+
+
+
+
+
+
+ 0
+
+ 70
+ {597, 10000000}
+
+
+
+ {{1, 1}, {538, 443}}
+
+
+
+
+
+ 4
+ YES
+
+
+
+
+ 256
+ {{523, 1}, {16, 443}}
+
+ NO
+ _doScroller:
+
+
+ _doScroller:
+ 1
+ 0.85256409645080566
+
+
+
+
+ -2147483392
+ {{-100, -100}, {87, 18}}
+
+ NO
+ _doScroller:
+
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 102}, {540, 445}}
+
+
+
+ YES
+
+ 1
+ _panWithGestureRecognizer:
+
+ 0
+ 1
+
+
+ 133138
+
+
+
+ 0.25
+ 4
+ 1
+
+
+ {580, 567}
+ NSView
+
+
+ TroubleshootingWindowDelegate
+
+
+
+ YES
+ readMePath
+ licensePath
+ authorsPath
+ changeLogPath
+ descriptionString
+ buildInfoString
+ aboutTextFilesFont
+
+ YES
+
+
+
+
+ YES
+ isSpeedLimitEnabled
+ isCheatingEnabled
+ speedScalar
+ isFrameSkipEnabled
+ emuFlagAdvancedBusLevelTiming
+ emuFlagUseExternalBios
+ emuFlagEmulateBiosInterrupts
+ emuFlagPatchDelayLoop
+ emuFlagUseExternalFirmware
+ emuFlagFirmwareBoot
+ emuFlagDebugConsole
+ emuFlagEmulateEnsata
+ cpuEmulationEngine
+ emuFlagRigorousTiming
+ slot1StatusText
+ slot1DeviceType
+ maxJITBlockSize
+ cdsGPU.layerMainGPU
+ cdsGPU.layerMainBG0
+ cdsGPU.layerMainBG1
+ cdsGPU.layerMainBG2
+ cdsGPU.layerMainBG3
+ cdsGPU.layerMainOBJ
+ cdsGPU.layerSubGPU
+ cdsGPU.layerSubBG0
+ cdsGPU.layerSubBG1
+ cdsGPU.layerSubBG2
+ cdsGPU.layerSubBG3
+ cdsGPU.layerSubOBJ
+ coreState
+ frameStatus
+ executionSpeedStatus
+ cdsGPU.render3DRenderingEngine
+ cdsGPU.render3DTextures
+ cdsGPU.render3DHighPrecisionColorInterpolation
+ cdsGPU.render3DEdgeMarking
+ cdsGPU.render3DFog
+ cdsGPU.render3DLineHack
+ cdsGPU.render3DDepthComparisonThreshold
+ cdsGPU.render3DThreads
+ cdsGPU.render3DFragmentSamplingHack
+ isGdbStubStarted
+ enableGdbStubARM9
+ enableGdbStubARM7
+ gdbStubPortARM9
+ gdbStubPortARM7
+ isInDebugTrap
+ cdsGPU.render3DTextureDeposterize
+ cdsGPU.render3DTextureScalingFactor
+ cdsGPU.render3DTextureSmoothing
+ emuFlagUseGameSpecificHacks
+ cdsGPU.gpuColorFormat
+ frameJumpBehavior
+ frameJumpNumberFramesForward
+ frameJumpToFrameIndex
+ errorStatus
+ firmwareMACAddressString
+ firmwareMACAddressSelectionString
+ cdsGPU.render3DMultisampleSize
+ currentSessionMACAddressString
+ cdsGPU.openGLRenderingLevel
+ cdsGPU.openGLEmulateShadowPolygon
+ cdsGPU.openGLEmulateSpecialZeroAlphaBlending
+ cdsGPU.openGLEmulateDepthEqualsTestTolerance
+ cdsGPU.openGLEmulateDepthLEqualPolygonFacing
+
+ CocoaDSCore
+
+
+
+
+ YES
+ spuInterpolationMode
+ spuSyncMode
+ spuSyncMethod
+ spuAdvancedLogic
+ volume
+ audioOutputEngine
+
+ YES
+
+
+
+
+ YES
+ isWorking
+ isRomLoading
+ statusText
+ currentVolumeValue
+ currentVolumeIcon
+ isShowingSaveStateDialog
+ isShowingFileMigrationDialog
+ isUserInterfaceBlockingExecution
+ currentSaveStateURL
+ selectedRomSaveTypeID
+ currentRom
+ mainWindow
+ mainWindow.displayRotation
+ selectedExportRomSaveID
+ mainWindow.displayGap
+ mainWindow.view.videoSourceDeposterize
+ mainWindow.view.outputFilter
+ mainWindow.view.sourceDeposterize
+ mainWindow.view.srcDeposterize
+ mainWindow.view.videoFilterType
+ mainWindow.view.pixelScaler
+ mainWindow.view.videoFiltersPreferGPU
+ mainWindow.view.useVerticalSync
+ mainWindow.view.canUseShaderBasedFilters
+ mainWindow.view.isHUDVisible
+ mainWindow.view.isHUDVideoFPSVisible
+ mainWindow.view.isHUDRender3DFPSVisible
+ mainWindow.view.isHUDFrameIndexVisible
+ mainWindow.view.isHUDLagFrameCountVisible
+ mainWindow.view.isHUDRealTimeClockVisible
+ mainWindow.view.isHUDCPULoadAverageVisible
+ mainWindow.view.hudColorVideoFPS
+ mainWindow.view.hudColorRender3DFPS
+ mainWindow.view.hudColorFrameIndex
+ mainWindow.view.hudColorLagFrameCount
+ mainWindow.view.hudColorCPULoadAverage
+ mainWindow.view.hudColorRTC
+ mainWindow.view.isHUDInputVisible
+ mainWindow.view.hudColorInputPendingAndApplied
+ mainWindow.view.hudColorInputAppliedOnly
+ mainWindow.view.hudColorInputPendingOnly
+ mainWindow.view.isHUDExecutionSpeedVisible
+ mainWindow.view.hudColorExecutionSpeed
+
+ EmuControllerDelegate
+
+
+
+
+ YES
+ hasSelection
+ hasItems
+ cheatList
+ cheatSearchStyle
+ cheatSearchSignType
+ cheatSearchSearchValue
+ cheatSearchAddressCount
+ isRunningSearch
+ isSearchStarted
+ cheatDBTitle
+ cheatDBItemCount
+ cheatDBDate
+
+ YES
+
+
+
+
+ YES
+ Input_Up
+ Input_Down
+ Input_Left
+ Input_Right
+ Input_A
+ Input_B
+ Input_X
+ Input_Y
+ Input_L
+ Input_R
+ Input_Start
+ Input_Select
+ Input_Microphone
+ Input_Lid
+ Input_Debug
+ Input_SpeedHalf
+ Input_SpeedDouble
+ Input_HUD
+ Input_Execute
+ Input_Pause
+ Input_Reset
+ Arm7BiosImageName
+ Arm9BiosImageName
+ FirmwareImageName
+ AutoloadRomName
+ VideoFilterPreviewImage
+ volumeIconImage
+ R4CheatDatabaseName
+ AdvansceneDatabaseName
+
+ YES
+
+
+
+
+ YES
+ romName
+ romSerial
+ supportRequestText
+ bugReportObservedText
+ bugReportExpectedText
+ finalFormText
+ goWebpageButtonTitle
+ copyPasteHelpText
+
+
+
+
+
+ YES
+ nickname
+ message
+ favoriteColor
+ birthday
+ language
+ consoleType
+ ipv4Address_AP1_1
+ ipv4Address_AP1_2
+ ipv4Address_AP1_3
+ ipv4Address_AP1_4
+ ipv4Gateway_AP1_1
+ ipv4Gateway_AP1_2
+ ipv4Gateway_AP1_3
+ ipv4Gateway_AP1_4
+ ipv4PrimaryDNS_AP1_1
+ ipv4PrimaryDNS_AP1_2
+ ipv4PrimaryDNS_AP1_3
+ ipv4PrimaryDNS_AP1_4
+ ipv4SecondaryDNS_AP1_1
+ ipv4SecondaryDNS_AP1_2
+ ipv4SecondaryDNS_AP1_3
+ ipv4SecondaryDNS_AP1_4
+ subnetMaskString_AP1
+ subnetMask_AP1
+ ipv4Address_AP2_1
+ ipv4Address_AP2_2
+ ipv4Address_AP2_3
+ ipv4Address_AP2_4
+ ipv4Gateway_AP2_1
+ ipv4Gateway_AP2_2
+ ipv4Gateway_AP2_3
+ ipv4Gateway_AP2_4
+ ipv4PrimaryDNS_AP2_1
+ ipv4PrimaryDNS_AP2_2
+ ipv4PrimaryDNS_AP2_3
+ ipv4PrimaryDNS_AP2_4
+ ipv4SecondaryDNS_AP2_1
+ ipv4SecondaryDNS_AP2_2
+ ipv4SecondaryDNS_AP2_3
+ ipv4SecondaryDNS_AP2_4
+ subnetMask_AP2
+ subnetMaskString_AP2
+ ipv4Address_AP3_1
+ ipv4Address_AP3_2
+ ipv4Address_AP3_3
+ ipv4Address_AP3_4
+ ipv4Gateway_AP3_1
+ ipv4Gateway_AP3_2
+ ipv4Gateway_AP3_3
+ ipv4Gateway_AP3_4
+ ipv4PrimaryDNS_AP3_1
+ ipv4PrimaryDNS_AP3_2
+ ipv4PrimaryDNS_AP3_3
+ ipv4PrimaryDNS_AP3_4
+ ipv4SecondaryDNS_AP3_1
+ ipv4SecondaryDNS_AP3_2
+ ipv4SecondaryDNS_AP3_3
+ ipv4SecondaryDNS_AP3_4
+ subnetMask_AP3
+ subnetMaskString_AP3
+ addressSelection
+ firmwareMACAddressString
+ firmwareMACAddressPendingString
+
+ CocoaDSFirmware
+
+
+
+
+ YES
+ gameTitle
+ gameCode
+ makerCode
+ cardSize
+ bannerJapanese
+ bannerEnglish
+ bannerFrench
+ bannerGerman
+ bannerItalian
+ bannerSpanish
+ fntOffset
+ fntTableSize
+ fatOffset
+ fatSize
+ iconOffset
+ romSize
+ iconImage
+ arm9BinaryOffset
+ arm9BinaryEntryAddress
+ arm9BinaryStartAddress
+ arm9BinarySize
+ arm7BinaryOffset
+ arm7BinaryEntryAddress
+ arm7BinaryStartAddress
+ arm7BinarySize
+ romInternalName
+ romSerial
+ romNameAndSerialInfo
+ gameDeveloper
+ gameDeveloperWithCode
+ usedRomSize
+ unitCode
+ unusedCapacity
+
+
+
+
+
+ YES
+ enabled
+ cheatType
+ description
+ cheatTypeIcon
+ isSupportedCheatType
+ freezeType
+ codeCount
+ bytes
+ memAddress
+ value
+ code
+ memAddressString
+ memAddressSixDigitString
+
+ CocoaDSCheatItem
+ YES
+
+
+
+
+ YES
+ Name
+ IsDefaultType
+ Mappings
+
+ YES
+
+
+
+
+ YES
+ intValue0
+ intValue1
+ intValue2
+ intValue3
+ floatValue0
+ floatValue1
+ floatValue2
+ floatValue3
+ object0
+ object1
+ object2
+ object3
+ useInputForIntCoord
+ useInputForFloatCoord
+ useInputForScalar
+ useInputForSender
+ deviceInfoSummary
+ isInputAnalog
+
+ YES
+
+
+
+
+ YES
+ enabled
+ cheatTypeIcon
+ description
+ cheatType
+
+ CocoaDSCheatItem
+ YES
+
+ YES
+ YES
+ YES
+ YES
+ YES
+
+
+
+ YES
+ value
+ addressString
+
+
+ YES
+
+
+
+ YES
+ willAdd
+ description
+
+ YES
+
+ YES
+
+
+
+ YES
+ slot2StatusText
+ autoSelectedDeviceText
+ mpcfFolderName
+ mpcfFolderPath
+ mpcfDiskImageName
+ mpcfDiskImagePath
+ gbaCartridgeName
+ gbaCartridgePath
+ deviceManager.slot2StatusText
+ gbaSRamName
+ gbaSRamPath
+
+ Slot2WindowDelegate
+ YES
+
+
+
+
+ YES
+ name
+ description
+ deviceID
+ type
+ enabled
+
+ CocoaSlot2Device
+ YES
+
+ YES
+ YES
+ YES
+
+
+
+ YES
+ supportsForceFeedback
+ isForceFeedbackEnabled
+ manufacturerName
+ productName
+ serialNumber
+
+ InputHIDDevice
+ YES
+
+ YES
+ YES
+ YES
+
+
+
+ YES
+ Render3D_OpenGL_EmulateShadowPolygon
+ Render3D_OpenGL_EmulateSpecialZeroAlphaBlending
+ Render3D_OpenGL_EmulateDepthEqualTestTolerance
+ Render3D_OpenGL_EmulateDepthLEqualPolygonFacing
+
+ YES
+
+
+
+
+ YES
+
+
+ performMiniaturize:
+
+
+
+ 37
+
+
+
+ arrangeInFront:
+
+
+
+ 39
+
+
+
+ clearRecentDocuments:
+
+
+
+ 127
+
+
+
+ performZoom:
+
+
+
+ 240
+
+
+
+ hide:
+
+
+
+ 367
+
+
+
+ hideOtherApplications:
+
+
+
+ 368
+
+
+
+ unhideAllApplications:
+
+
+
+ 370
+
+
+
+ terminate:
+
+
+
+ 449
+
+
+
+ showHelp:
+
+
+
+ 493
+
+
+
+ delegate
+
+
+
+ 495
+
+
+
+ contentView
+
+
+
+ 718
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 782
+
+
+
+ launchWebsite:
+
+
+
+ 1101
+
+
+
+ launchForums:
+
+
+
+ 1102
+
+
+
+ bugReport:
+
+
+
+ 1103
+
+
+
+ window
+
+
+
+ 1689
+
+
+
+ viewDisplay
+
+
+
+ 1690
+
+
+
+ viewGeneral
+
+
+
+ 1691
+
+
+
+ mLoadStateSlot
+
+
+
+ 1775
+
+
+
+ mSaveStateSlot
+
+
+
+ 1776
+
+
+
+ delegate
+
+
+
+ 2025
+
+
+
+ prefWindow
+
+
+
+ 2094
+
+
+
+ viewSound
+
+
+
+ 2251
+
+
+
+ updateVolumeIcon:
+
+
+
+ 2268
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2310
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2311
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2312
+
+
+
+ selectDisplayRotation:
+
+
+
+ 2313
+
+
+
+ delegate
+
+
+
+ 2314
+
+
+
+ displayRotationField
+
+
+
+ 2315
+
+
+
+ displayRotationMenu
+
+
+
+ 2316
+
+
+
+ displayRotationMenuCustomItem
+
+
+
+ 2317
+
+
+
+ viewEmulation
+
+
+
+ 2380
+
+
+
+ selectSPUSyncMode:
+
+
+
+ 2451
+
+
+
+ selectSPUSyncMode:
+
+
+
+ 2452
+
+
+
+ selectSPUSyncMethod:
+
+
+
+ 2453
+
+
+
+ selectSPUSyncMethod:
+
+
+
+ 2454
+
+
+
+ selectSPUSyncMethod:
+
+
+
+ 2455
+
+
+
+ spuSyncMethodMenu
+
+
+
+ 2456
+
+
+
+ chooseFirmwareImage:
+
+
+
+ 2575
+
+
+
+ chooseARM7BiosImage:
+
+
+
+ 2587
+
+
+
+ chooseARM9BiosImage:
+
+
+
+ 2588
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 2611
+
+
+
+ cut:
+
+
+
+ 3252
+
+
+
+ paste:
+
+
+
+ 3257
+
+
+
+ redo:
+
+
+
+ 3266
+
+
+
+ delete:
+
+
+
+ 3267
+
+
+
+ selectAll:
+
+
+
+ 3270
+
+
+
+ undo:
+
+
+
+ 3272
+
+
+
+ prefWindowController
+
+
+
+ 3532
+
+
+
+ value: selection.FirmwareImageName
+
+
+
+
+
+ value: selection.FirmwareImageName
+ value
+ selection.FirmwareImageName
+ 2
+
+
+ 3561
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 3792
+
+
+
+ value: values.Render3D_HighPrecisionColorInterpolation
+
+
+
+
+
+ value: values.Render3D_HighPrecisionColorInterpolation
+ value
+ values.Render3D_HighPrecisionColorInterpolation
+ 2
+
+
+ 3830
+
+
+
+ value: values.Render3D_Fog
+
+
+
+
+
+ value: values.Render3D_Fog
+ value
+ values.Render3D_Fog
+ 2
+
+
+ 3832
+
+
+
+ value: values.Render3D_Textures
+
+
+
+
+
+ value: values.Render3D_Textures
+ value
+ values.Render3D_Textures
+ 2
+
+
+ 3833
+
+
+
+ value: values.Render3D_EdgeMarking
+
+
+
+
+
+ value: values.Render3D_EdgeMarking
+ value
+ values.Render3D_EdgeMarking
+ 2
+
+
+ 3836
+
+
+
+ selectedTag: values.Render3D_Threads
+
+
+
+
+
+ selectedTag: values.Render3D_Threads
+ selectedTag
+ values.Render3D_Threads
+ 2
+
+
+ 3895
+
+
+
+ value: values.Render3D_LineHack
+
+
+
+
+
+ value: values.Render3D_LineHack
+ value
+ values.Render3D_LineHack
+ 2
+
+
+ 3902
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 3964
+
+
+
+ value: selection.Arm9BiosImageName
+
+
+
+
+
+ value: selection.Arm9BiosImageName
+ value
+ selection.Arm9BiosImageName
+ 2
+
+
+ 4025
+
+
+
+ value: selection.Arm7BiosImageName
+
+
+
+
+
+ value: selection.Arm7BiosImageName
+ value
+ selection.Arm7BiosImageName
+ 2
+
+
+ 4026
+
+
+
+ contentView
+
+
+
+ 4057
+
+
+
+ parentWindow
+
+
+
+ 4058
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 4063
+
+
+
+ toggle:
+
+
+
+ 4068
+
+
+
+ value: values.SPU_AdvancedLogic
+
+
+
+
+
+ value: values.SPU_AdvancedLogic
+ value
+ values.SPU_AdvancedLogic
+ 2
+
+
+ 4137
+
+
+
+ selectedTag: values.SPU_InterpolationMode
+
+
+
+
+
+ selectedTag: values.SPU_InterpolationMode
+ selectedTag
+ values.SPU_InterpolationMode
+ 2
+
+
+ 4138
+
+
+
+ selectedTag: values.SPU_SyncMode
+
+
+
+
+
+ selectedTag: values.SPU_SyncMode
+ selectedTag
+ values.SPU_SyncMode
+ 2
+
+
+ 4139
+
+
+
+ selectedTag: values.SPU_SyncMethod
+
+
+
+
+
+ selectedTag: values.SPU_SyncMethod
+ selectedTag
+ values.SPU_SyncMethod
+ 2
+
+
+ 4140
+
+
+
+ value: selection.emuFlagAdvancedBusLevelTiming
+
+
+
+
+
+ value: selection.emuFlagAdvancedBusLevelTiming
+ value
+ selection.emuFlagAdvancedBusLevelTiming
+ 2
+
+
+ 4141
+
+
+
+ value: selection.emuFlagUseExternalBios
+
+
+
+
+
+ value: selection.emuFlagUseExternalBios
+ value
+ selection.emuFlagUseExternalBios
+ 2
+
+
+ 4142
+
+
+
+ value: selection.emuFlagEmulateBiosInterrupts
+
+
+
+
+
+ value: selection.emuFlagEmulateBiosInterrupts
+ value
+ selection.emuFlagEmulateBiosInterrupts
+ 2
+
+
+ 4143
+
+
+
+ value: selection.emuFlagPatchDelayLoop
+
+
+
+
+
+ value: selection.emuFlagPatchDelayLoop
+ value
+ selection.emuFlagPatchDelayLoop
+ 2
+
+
+ 4145
+
+
+
+ value: selection.emuFlagUseExternalFirmware
+
+
+
+
+
+ value: selection.emuFlagUseExternalFirmware
+ value
+ selection.emuFlagUseExternalFirmware
+ 2
+
+
+ 4146
+
+
+
+ value: selection.emuFlagFirmwareBoot
+
+
+
+
+
+ value: selection.emuFlagFirmwareBoot
+ value
+ selection.emuFlagFirmwareBoot
+ 2
+
+
+ 4147
+
+
+
+ value: selection.emuFlagDebugConsole
+
+
+
+
+
+ value: selection.emuFlagDebugConsole
+ value
+ selection.emuFlagDebugConsole
+ 2
+
+
+ 4148
+
+
+
+ value: selection.emuFlagEmulateEnsata
+
+
+
+
+
+ value: selection.emuFlagEmulateEnsata
+ value
+ selection.emuFlagEmulateEnsata
+ 2
+
+
+ 4149
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+ enabled
+ selection.emuFlagUseExternalBios
+ 2
+
+
+ 4150
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled: selection.emuFlagUseExternalBios
+ enabled
+ selection.emuFlagUseExternalBios
+ 2
+
+
+ 4151
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 4280
+
+
+
+ firmwareConfigSheet
+
+
+
+ 4466
+
+
+
+ configureInternalFirmware:
+
+
+
+ 4467
+
+
+
+ closeFirmwareConfigSheet:
+
+
+
+ 4468
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 4638
+
+
+
+ value: selection.isCheatingEnabled
+
+
+
+
+
+ value: selection.isCheatingEnabled
+ value
+ selection.isCheatingEnabled
+ 2
+
+
+ 4648
+
+
+
+ window
+
+
+
+ 4699
+
+
+
+ delegate
+
+
+
+ 4700
+
+
+
+ viewConfigureActionReplayCheat
+
+
+
+ 4702
+
+
+
+ viewConfigureInternalCheat
+
+
+
+ 4703
+
+
+
+ cheatConfigBox
+
+
+
+ 4709
+
+
+
+ delegate
+
+
+
+ 4716
+
+
+
+ cheatSelectedItemController
+
+
+
+ 4717
+
+
+
+ selectCheatType:
+
+
+
+ 4718
+
+
+
+ selectCheatType:
+
+
+
+ 4719
+
+
+
+ addToList:
+
+
+
+ 4721
+
+
+
+ applyConfiguration:
+
+
+
+ 4722
+
+
+
+ cheatListTable
+
+
+
+ 4728
+
+
+
+ removeFromList:
+
+
+
+ 4730
+
+
+
+ cheatWindowController
+
+
+
+ 4735
+
+
+
+ viewConfigureNoSelection
+
+
+
+ 4747
+
+
+
+ viewConfigureCodeBreakerCheat
+
+
+
+ 4748
+
+
+
+ cheatListController
+
+
+
+ 4755
+
+
+
+ parentWindow
+
+
+
+ 4791
+
+
+
+ toggle:
+
+
+
+ 4819
+
+
+
+ cheatSearchListController
+
+
+
+ 4922
+
+
+
+ runExactValueSearch:
+
+
+
+ 4928
+
+
+
+ runComparativeSearch:
+
+
+
+ 4929
+
+
+
+ runComparativeSearch:
+
+
+
+ 4930
+
+
+
+ runComparativeSearch:
+
+
+
+ 4931
+
+
+
+ runComparativeSearch:
+
+
+
+ 4932
+
+
+
+ selectCheatSearchStyle:
+
+
+
+ 4933
+
+
+
+ selectCheatSearchStyle:
+
+
+
+ 4934
+
+
+
+ viewSearchComparativeContinue
+
+
+
+ 4936
+
+
+
+ viewSearchComparativeStart
+
+
+
+ 4937
+
+
+
+ viewSearchExactValue
+
+
+
+ 4938
+
+
+
+ viewSearchNoSelection
+
+
+
+ 4939
+
+
+
+ cheatSearchView
+
+
+
+ 4940
+
+
+
+ resetSearch:
+
+
+
+ 4941
+
+
+
+ runComparativeSearch:
+
+
+
+ 4943
+
+
+
+ searchField
+
+
+
+ 4944
+
+
+
+ cheatSearchListTable
+
+
+
+ 4945
+
+
+
+ delegate
+
+
+
+ 4946
+
+
+
+ cdsCoreController
+
+
+
+ 4955
+
+
+
+ setInternalCheatValue:
+
+
+
+ 5070
+
+
+
+ value: selection.R4CheatDatabaseName
+
+
+
+
+
+ value: selection.R4CheatDatabaseName
+ value
+ selection.R4CheatDatabaseName
+ 2
+
+
+ 5073
+
+
+
+ chooseCheatDatabase:
+
+
+
+ 5078
+
+
+
+ viewDatabase:
+
+
+
+ 5079
+
+
+
+ cheatDatabaseSheet
+
+
+
+ 5108
+
+
+
+ closeCheatDatabaseSheet:
+
+
+
+ 5109
+
+
+
+ closeCheatDatabaseSheet:
+
+
+
+ 5110
+
+
+
+ cheatDatabaseController
+
+
+
+ 5119
+
+
+
+ selectAllCheatsInDatabase:
+
+
+
+ 5122
+
+
+
+ selectNoneCheatsInDatabase:
+
+
+
+ 5123
+
+
+
+ cheatWindowController
+
+
+
+ 5143
+
+
+
+ cheatDatabaseController
+
+
+
+ 5145
+
+
+
+ prefWindowController
+
+
+
+ 5149
+
+
+
+ cdsCoreController
+
+
+
+ 5150
+
+
+
+ value: selection.AdvansceneDatabaseName
+
+
+
+
+
+ value: selection.AdvansceneDatabaseName
+ value
+ selection.AdvansceneDatabaseName
+ 2
+
+
+ 5182
+
+
+
+ chooseAdvansceneDatabase:
+
+
+
+ 5183
+
+
+
+ value: selection.nickname
+
+
+
+
+
+ value: selection.nickname
+ value
+ selection.nickname
+ 2
+
+
+ 5478
+
+
+
+ value: selection.message
+
+
+
+
+
+ value: selection.message
+ value
+ selection.message
+ 2
+
+
+ 5479
+
+
+
+ selectedTag: selection.favoriteColor
+
+
+
+
+
+ selectedTag: selection.favoriteColor
+ selectedTag
+ selection.favoriteColor
+ 2
+
+
+ 5480
+
+
+
+ value: selection.birthday
+
+
+
+
+
+ value: selection.birthday
+ value
+ selection.birthday
+ 2
+
+
+ 5481
+
+
+
+ selectedTag: selection.language
+
+
+
+
+
+ selectedTag: selection.language
+ selectedTag
+ selection.language
+ 2
+
+
+ 5482
+
+
+
+ value: selection.value
+
+
+
+
+
+ value: selection.value
+ value
+ selection.value
+ 2
+
+
+ 5484
+
+
+
+ selectedTag: selection.bytes
+
+
+
+
+
+ selectedTag: selection.bytes
+ selectedTag
+ selection.bytes
+ 2
+
+
+ 5485
+
+
+
+ value: selection.code
+
+
+
+
+
+ value: selection.code
+ value
+ selection.code
+ 2
+
+
+ 5486
+
+
+
+ selectedTag: selection.cheatType
+
+
+
+
+
+ selectedTag: selection.cheatType
+ selectedTag
+ selection.cheatType
+ 2
+
+
+ 5487
+
+
+
+ value: selection.description
+
+
+
+
+
+ value: selection.description
+ value
+ selection.description
+ 2
+
+
+ 5488
+
+
+
+ value: selection.enabled
+
+
+
+
+
+ value: selection.enabled
+ value
+ selection.enabled
+ 2
+
+
+ 5489
+
+
+
+ enabled: selection.value
+
+
+
+
+
+ enabled: selection.value
+ enabled
+ selection.value
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 5490
+
+
+
+ value: arrangedObjects.enabled
+
+
+
+
+
+ value: arrangedObjects.enabled
+ value
+ arrangedObjects.enabled
+ 2
+
+
+ 5493
+
+
+
+ value: arrangedObjects.cheatTypeIcon
+
+
+
+
+
+ value: arrangedObjects.cheatTypeIcon
+ value
+ arrangedObjects.cheatTypeIcon
+ 2
+
+
+ 5494
+
+
+
+ value: arrangedObjects.description
+
+
+
+
+
+ value: arrangedObjects.description
+ value
+ arrangedObjects.description
+ 2
+
+
+ 5495
+
+
+
+ value: arrangedObjects.willAdd
+
+
+
+
+
+ value: arrangedObjects.willAdd
+ value
+ arrangedObjects.willAdd
+ 2
+
+
+ 5497
+
+
+
+ value: arrangedObjects.description
+
+
+
+
+
+ value: arrangedObjects.description
+ value
+ arrangedObjects.description
+
+ NSConditionallySetsEditable
+
+
+ 2
+
+
+ 5498
+
+
+
+ value: selection.memAddressSixDigitString
+
+
+
+
+
+ value: selection.memAddressSixDigitString
+ value
+ selection.memAddressSixDigitString
+ 2
+
+
+ 5499
+
+
+
+ value: selection.volumeIconImage
+
+
+
+
+
+ value: selection.volumeIconImage
+ value
+ selection.volumeIconImage
+ 2
+
+
+ 5525
+
+
+
+ value: arrangedObjects.addressString
+
+
+
+
+
+ value: arrangedObjects.addressString
+ value
+ arrangedObjects.addressString
+ 2
+
+
+ 5566
+
+
+
+ value: arrangedObjects.value
+
+
+
+
+
+ value: arrangedObjects.value
+ value
+ arrangedObjects.value
+ 2
+
+
+ 5567
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 5580
+
+
+
+ value: selection.romSize
+
+
+
+
+
+ value: selection.romSize
+ value
+ selection.romSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5584
+
+
+
+ value: selection.bannerJapanese
+
+
+
+
+
+ value: selection.bannerJapanese
+ value
+ selection.bannerJapanese
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5585
+
+
+
+ value: selection.bannerEnglish
+
+
+
+
+
+ value: selection.bannerEnglish
+ value
+ selection.bannerEnglish
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5586
+
+
+
+ value: selection.bannerFrench
+
+
+
+
+
+ value: selection.bannerFrench
+ value
+ selection.bannerFrench
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5587
+
+
+
+ value: selection.bannerGerman
+
+
+
+
+
+ value: selection.bannerGerman
+ value
+ selection.bannerGerman
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5588
+
+
+
+ value: selection.bannerItalian
+
+
+
+
+
+ value: selection.bannerItalian
+ value
+ selection.bannerItalian
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5589
+
+
+
+ value: selection.bannerSpanish
+
+
+
+
+
+ value: selection.bannerSpanish
+ value
+ selection.bannerSpanish
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5590
+
+
+
+ value: selection.arm9BinaryOffset
+
+
+
+
+
+ value: selection.arm9BinaryOffset
+ value
+ selection.arm9BinaryOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5591
+
+
+
+ value: selection.arm9BinaryEntryAddress
+
+
+
+
+
+ value: selection.arm9BinaryEntryAddress
+ value
+ selection.arm9BinaryEntryAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5592
+
+
+
+ value: selection.arm9BinaryStartAddress
+
+
+
+
+
+ value: selection.arm9BinaryStartAddress
+ value
+ selection.arm9BinaryStartAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5593
+
+
+
+ value: selection.arm9BinarySize
+
+
+
+
+
+ value: selection.arm9BinarySize
+ value
+ selection.arm9BinarySize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5594
+
+
+
+ value: selection.arm7BinaryOffset
+
+
+
+
+
+ value: selection.arm7BinaryOffset
+ value
+ selection.arm7BinaryOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5595
+
+
+
+ value: selection.arm7BinaryEntryAddress
+
+
+
+
+
+ value: selection.arm7BinaryEntryAddress
+ value
+ selection.arm7BinaryEntryAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5596
+
+
+
+ value: selection.arm7BinaryStartAddress
+
+
+
+
+
+ value: selection.arm7BinaryStartAddress
+ value
+ selection.arm7BinaryStartAddress
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5597
+
+
+
+ value: selection.arm7BinarySize
+
+
+
+
+
+ value: selection.arm7BinarySize
+ value
+ selection.arm7BinarySize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5598
+
+
+
+ value: selection.fntOffset
+
+
+
+
+
+ value: selection.fntOffset
+ value
+ selection.fntOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5599
+
+
+
+ value: selection.fntTableSize
+
+
+
+
+
+ value: selection.fntTableSize
+ value
+ selection.fntTableSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5600
+
+
+
+ value: selection.fatOffset
+
+
+
+
+
+ value: selection.fatOffset
+ value
+ selection.fatOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5601
+
+
+
+ value: selection.fatSize
+
+
+
+
+
+ value: selection.fatSize
+ value
+ selection.fatSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5602
+
+
+
+ value: selection.iconOffset
+
+
+
+
+
+ value: selection.iconOffset
+ value
+ selection.iconOffset
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5603
+
+
+
+ selectedTag: selection.audioOutputEngine
+
+
+
+
+
+ selectedTag: selection.audioOutputEngine
+ selectedTag
+ selection.audioOutputEngine
+ 2
+
+
+ 5608
+
+
+
+ value: selection.spuAdvancedLogic
+
+
+
+
+
+ value: selection.spuAdvancedLogic
+ value
+ selection.spuAdvancedLogic
+ 2
+
+
+ 5609
+
+
+
+ selectedTag: selection.spuInterpolationMode
+
+
+
+
+
+ selectedTag: selection.spuInterpolationMode
+ selectedTag
+ selection.spuInterpolationMode
+ 2
+
+
+ 5610
+
+
+
+ selectedTag: selection.spuSyncMode
+
+
+
+
+
+ selectedTag: selection.spuSyncMode
+ selectedTag
+ selection.spuSyncMode
+ 2
+
+
+ 5611
+
+
+
+ selectedTag: selection.spuSyncMethod
+
+
+
+
+
+ selectedTag: selection.spuSyncMethod
+ selectedTag
+ selection.spuSyncMethod
+ 2
+
+
+ 5612
+
+
+
+ value: selection.cheatDBTitle
+
+
+
+
+
+ value: selection.cheatDBTitle
+ value
+ selection.cheatDBTitle
+ 2
+
+
+ 5618
+
+
+
+ value: selection.cheatDBDate
+
+
+
+
+
+ value: selection.cheatDBDate
+ value
+ selection.cheatDBDate
+ 2
+
+
+ 5619
+
+
+
+ value: selection.cheatDBItemCount
+
+
+
+
+
+ value: selection.cheatDBItemCount
+ value
+ selection.cheatDBItemCount
+ 2
+
+
+ 5620
+
+
+
+ selectedTag: selection.cheatSearchStyle
+
+
+
+
+
+ selectedTag: selection.cheatSearchStyle
+ selectedTag
+ selection.cheatSearchStyle
+ 2
+
+
+ 5621
+
+
+
+ value: selection.cheatSearchAddressCount
+
+
+
+
+
+ value: selection.cheatSearchAddressCount
+ value
+ selection.cheatSearchAddressCount
+ 2
+
+
+ 5622
+
+
+
+ value: selection.cheatSearchSearchValue
+
+
+
+
+
+ value: selection.cheatSearchSearchValue
+ value
+ selection.cheatSearchSearchValue
+ 2
+
+
+ 5623
+
+
+
+ animate: selection.isRunningSearch
+
+
+
+
+
+ animate: selection.isRunningSearch
+ animate
+ selection.isRunningSearch
+ 2
+
+
+ 5626
+
+
+
+ enabled: selection.isRunningSearch
+
+
+
+
+
+ enabled: selection.isRunningSearch
+ enabled
+ selection.isRunningSearch
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 5627
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 5644
+
+
+
+ value: values.Advanscene_AutoDetectRomSaveType
+
+
+
+
+
+ value: values.Advanscene_AutoDetectRomSaveType
+ value
+ values.Advanscene_AutoDetectRomSaveType
+ 2
+
+
+ 5647
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 5720
+
+
+
+ aboutWindowController
+
+
+
+ 5721
+
+
+
+ value: selection.romSerial
+
+
+
+
+
+ value: selection.romSerial
+ value
+ selection.romSerial
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5722
+
+
+
+ value: selection.romInternalName
+
+
+
+
+
+ value: selection.romInternalName
+ value
+ selection.romInternalName
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5723
+
+
+
+ value: values.FirmwareConfig_Nickname
+
+
+
+
+
+ value: values.FirmwareConfig_Nickname
+ value
+ values.FirmwareConfig_Nickname
+ 2
+
+
+ 5729
+
+
+
+ value: values.FirmwareConfig_Message
+
+
+
+
+
+ value: values.FirmwareConfig_Message
+ value
+ values.FirmwareConfig_Message
+ 2
+
+
+ 5730
+
+
+
+ selectedTag: values.FirmwareConfig_FavoriteColor
+
+
+
+
+
+ selectedTag: values.FirmwareConfig_FavoriteColor
+ selectedTag
+ values.FirmwareConfig_FavoriteColor
+ 2
+
+
+ 5731
+
+
+
+ value: values.FirmwareConfig_Birthday
+
+
+
+
+
+ value: values.FirmwareConfig_Birthday
+ value
+ values.FirmwareConfig_Birthday
+ 2
+
+
+ 5732
+
+
+
+ selectedTag: values.FirmwareConfig_Language
+
+
+
+
+
+ selectedTag: values.FirmwareConfig_Language
+ selectedTag
+ values.FirmwareConfig_Language
+ 2
+
+
+ 5733
+
+
+
+ value: values.DisplayView_Rotation
+
+
+
+
+
+ value: values.DisplayView_Rotation
+ value
+ values.DisplayView_Rotation
+ 2
+
+
+ 5974
+
+
+
+ selectedTag: values.DisplayView_VideoFilter
+
+
+
+
+
+ selectedTag: values.DisplayView_VideoFilter
+ selectedTag
+ values.DisplayView_VideoFilter
+ 2
+
+
+ 5976
+
+
+
+ selectedTag: values.Sound_AudioOutputEngine
+
+
+
+
+
+ selectedTag: values.Sound_AudioOutputEngine
+ selectedTag
+ values.Sound_AudioOutputEngine
+ 2
+
+
+ 5989
+
+
+
+ value: values.Sound_Volume
+
+
+
+
+
+ value: values.Sound_Volume
+ value
+ values.Sound_Volume
+ 2
+
+
+ 5990
+
+
+
+ value: values.Sound_Volume
+
+
+
+
+
+ value: values.Sound_Volume
+ value
+ values.Sound_Volume
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 5991
+
+
+
+ enabled: values.Advanscene_DatabasePath
+
+
+
+
+
+ enabled: values.Advanscene_DatabasePath
+ enabled
+ values.Advanscene_DatabasePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 5992
+
+
+
+ value: values.Emulation_AdvancedBusLevelTiming
+
+
+
+
+
+ value: values.Emulation_AdvancedBusLevelTiming
+ value
+ values.Emulation_AdvancedBusLevelTiming
+ 2
+
+
+ 5993
+
+
+
+ value: values.Emulation_BIOSEmulateSWI
+
+
+
+
+
+ value: values.Emulation_BIOSEmulateSWI
+ value
+ values.Emulation_BIOSEmulateSWI
+ 2
+
+
+ 5994
+
+
+
+ value: values.Emulation_BIOSPatchDelayLoopSWI
+
+
+
+
+
+ value: values.Emulation_BIOSPatchDelayLoopSWI
+ value
+ values.Emulation_BIOSPatchDelayLoopSWI
+ 2
+
+
+ 5995
+
+
+
+ value: values.Emulation_EmulateEnsata
+
+
+
+
+
+ value: values.Emulation_EmulateEnsata
+ value
+ values.Emulation_EmulateEnsata
+ 2
+
+
+ 5996
+
+
+
+ value: values.Emulation_UseDebugConsole
+
+
+
+
+
+ value: values.Emulation_UseDebugConsole
+ value
+ values.Emulation_UseDebugConsole
+ 2
+
+
+ 5998
+
+
+
+ value: values.Emulation_FirmwareBoot
+
+
+
+
+
+ value: values.Emulation_FirmwareBoot
+ value
+ values.Emulation_FirmwareBoot
+ 2
+
+
+ 5999
+
+
+
+ value: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ value: values.Emulation_UseExternalBIOSImages
+ value
+ values.Emulation_UseExternalBIOSImages
+ 2
+
+
+ 6000
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+ enabled
+ values.Emulation_UseExternalBIOSImages
+
+ NSRaisesForNotApplicableKeys
+
+
+ 2
+
+
+ 6001
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled: values.Emulation_UseExternalBIOSImages
+ enabled
+ values.Emulation_UseExternalBIOSImages
+
+ NSRaisesForNotApplicableKeys
+
+
+ 2
+
+
+ 6004
+
+
+
+ value: values.Emulation_UseExternalFirmwareImage
+
+
+
+
+
+ value: values.Emulation_UseExternalFirmwareImage
+ value
+ values.Emulation_UseExternalFirmwareImage
+ 2
+
+
+ 6011
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+
+
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+ enabled
+ values.Emulation_UseExternalFirmwareImage
+
+ NSRaisesForNotApplicableKeys
+
+
+ 2
+
+
+ 6012
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+
+
+
+
+
+ enabled: values.Emulation_UseExternalFirmwareImage
+ enabled
+ values.Emulation_UseExternalFirmwareImage
+ 2
+
+
+ 6013
+
+
+
+ enabled2: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled2: values.Emulation_UseExternalBIOSImages
+ enabled2
+ values.Emulation_UseExternalBIOSImages
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6014
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+ enabled
+ values.BIOS_ARM9ImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6018
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6020
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6022
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+ enabled3
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6024
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+ enabled2
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6027
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6028
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6029
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+ enabled4
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6030
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+ enabled
+ values.Emulation_FirmwareImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6034
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+ enabled5
+ values.Emulation_FirmwareImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6037
+
+
+
+ enabled: selection.emuFlagUseExternalFirmware
+
+
+
+
+
+ enabled: selection.emuFlagUseExternalFirmware
+ enabled
+ selection.emuFlagUseExternalFirmware
+ 2
+
+
+ 6041
+
+
+
+ enabled2: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled2: selection.emuFlagUseExternalBios
+ enabled2
+ selection.emuFlagUseExternalBios
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6042
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled: values.Emulation_FirmwareImagePath
+ enabled
+ values.Emulation_FirmwareImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6048
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+ enabled3
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6058
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+ enabled4
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6067
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+
+
+
+
+
+ enabled5: values.Emulation_FirmwareImagePath
+ enabled5
+ values.Emulation_FirmwareImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6069
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6076
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6081
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM9ImagePath
+ enabled2
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6088
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM7ImagePath
+ enabled3
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6093
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled: values.BIOS_ARM9ImagePath
+ enabled
+ values.BIOS_ARM9ImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6100
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled2: values.BIOS_ARM7ImagePath
+ enabled2
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6105
+
+
+
+ selectedTag: values.Render3D_RenderingEngine
+
+
+
+
+
+ selectedTag: values.Render3D_RenderingEngine
+ selectedTag
+ values.Render3D_RenderingEngine
+ 2
+
+
+ 6109
+
+
+
+ value: values.General_ExecuteROMOnLoad
+
+
+
+
+
+ value: values.General_ExecuteROMOnLoad
+ value
+ values.General_ExecuteROMOnLoad
+ 2
+
+
+ 6119
+
+
+
+ value: values.General_DoNotAskMigrate
+
+
+
+
+
+ value: values.General_DoNotAskMigrate
+ value
+ values.General_DoNotAskMigrate
+ 2
+
+
+ 6123
+
+
+
+ value: selection.buildInfoString
+
+
+
+
+
+ value: selection.buildInfoString
+ value
+ selection.buildInfoString
+ 2
+
+
+ 6231
+
+
+
+ value: selection.descriptionString
+
+
+
+
+
+ value: selection.descriptionString
+ value
+ selection.descriptionString
+ 2
+
+
+ 6232
+
+
+
+ troubleshootingWindowController
+
+
+
+ 6442
+
+
+
+ window
+
+
+
+ 6443
+
+
+
+ viewBugReport
+
+
+
+ 6444
+
+
+
+ viewFinishedForm
+
+
+
+ 6445
+
+
+
+ viewSupportRequest
+
+
+
+ 6446
+
+
+
+ troubleshootingWindow
+
+
+
+ 6449
+
+
+
+ delegate
+
+
+
+ 6450
+
+
+
+ supportRequest:
+
+
+
+ 6452
+
+
+
+ title: selection.goWebpageButtonTitle
+
+
+
+
+
+ title: selection.goWebpageButtonTitle
+ title
+ selection.goWebpageButtonTitle
+ 2
+
+
+ 6457
+
+
+
+ value: selection.romName
+
+
+
+
+
+ value: selection.romName
+ value
+ selection.romName
+ 2
+
+
+ 6459
+
+
+
+ value: selection.romSerial
+
+
+
+
+
+ value: selection.romSerial
+ value
+ selection.romSerial
+ 2
+
+
+ 6460
+
+
+
+ value: selection.romName
+
+
+
+
+
+ value: selection.romName
+ value
+ selection.romName
+ 2
+
+
+ 6463
+
+
+
+ value: selection.romSerial
+
+
+
+
+
+ value: selection.romSerial
+ value
+ selection.romSerial
+ 2
+
+
+ 6464
+
+
+
+ romInfoController
+
+
+
+ 6467
+
+
+
+ continueToFinalForm:
+
+
+
+ 6468
+
+
+
+ continueToFinalForm:
+
+
+
+ 6469
+
+
+
+ copyRomInfoToTextFields:
+
+
+
+ 6470
+
+
+
+ copyRomInfoToTextFields:
+
+
+
+ 6471
+
+
+
+ backForm:
+
+
+
+ 6472
+
+
+
+ value: selection.bugReportObservedText
+
+
+
+
+
+ value: selection.bugReportObservedText
+ value
+ selection.bugReportObservedText
+ 2
+
+
+ 6490
+
+
+
+ value: selection.bugReportExpectedText
+
+
+
+
+
+ value: selection.bugReportExpectedText
+ value
+ selection.bugReportExpectedText
+ 2
+
+
+ 6495
+
+
+
+ value: selection.supportRequestText
+
+
+
+
+
+ value: selection.supportRequestText
+ value
+ selection.supportRequestText
+ 2
+
+
+ 6500
+
+
+
+ value: selection.finalFormText
+
+
+
+
+
+ value: selection.finalFormText
+ value
+ selection.finalFormText
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 6507
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6589
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6593
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6594
+
+
+
+ font: selection.aboutTextFilesFont
+
+
+
+
+
+ font: selection.aboutTextFilesFont
+ font
+ selection.aboutTextFilesFont
+ 2
+
+
+ 6595
+
+
+
+ valuePath: selection.readMePath
+
+
+
+
+
+ valuePath: selection.readMePath
+ valuePath
+ selection.readMePath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6598
+
+
+
+ valuePath: selection.licensePath
+
+
+
+
+
+ valuePath: selection.licensePath
+ valuePath
+ selection.licensePath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6601
+
+
+
+ valuePath: selection.authorsPath
+
+
+
+
+
+ valuePath: selection.authorsPath
+ valuePath
+ selection.authorsPath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6604
+
+
+
+ valuePath: selection.changeLogPath
+
+
+
+
+
+ valuePath: selection.changeLogPath
+ valuePath
+ selection.changeLogPath
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEditable
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 6610
+
+
+
+ copyInfoToPasteboard:
+
+
+
+ 6613
+
+
+
+ goToWebpage:
+
+
+
+ 6614
+
+
+
+ value: selection.copyPasteHelpText
+
+
+
+
+
+ value: selection.copyPasteHelpText
+ value
+ selection.copyPasteHelpText
+
+ NSAllowsEditingMultipleValuesSelection
+
+
+ 2
+
+
+ 6616
+
+
+
+ value: values.Emulation_RigorousTiming
+
+
+
+
+
+ value: values.Emulation_RigorousTiming
+ value
+ values.Emulation_RigorousTiming
+ 2
+
+
+ 6629
+
+
+
+ value: selection.emuFlagRigorousTiming
+
+
+
+
+
+ value: selection.emuFlagRigorousTiming
+ value
+ selection.emuFlagRigorousTiming
+ 2
+
+
+ 6632
+
+
+
+ cdsCoreController
+
+
+
+ 6655
+
+
+
+ cdsSoundController
+
+
+
+ 6656
+
+
+
+ cheatDatabaseController
+
+
+
+ 6657
+
+
+
+ cheatListController
+
+
+
+ 6658
+
+
+
+ cheatWindowController
+
+
+
+ 6659
+
+
+
+ cheatWindowDelegate
+
+
+
+ 6660
+
+
+
+ exportRomSavePanelAccessoryView
+
+
+
+ 6661
+
+
+
+ firmwarePanelController
+
+
+
+ 6662
+
+
+
+ romInfoPanelController
+
+
+
+ 6663
+
+
+
+ changeAudioEngine:
+
+
+
+ 6680
+
+
+
+ changeAudioEngine:
+
+
+
+ 6681
+
+
+
+ changeSpuAdvancedLogic:
+
+
+
+ 6682
+
+
+
+ changeSpuInterpolationMode:
+
+
+
+ 6683
+
+
+
+ changeSpuInterpolationMode:
+
+
+
+ 6684
+
+
+
+ changeSpuInterpolationMode:
+
+
+
+ 6685
+
+
+
+ changeSpuSyncMethod:
+
+
+
+ 6686
+
+
+
+ changeSpuSyncMethod:
+
+
+
+ 6687
+
+
+
+ changeSpuSyncMethod:
+
+
+
+ 6688
+
+
+
+ changeSpuSyncMode:
+
+
+
+ 6689
+
+
+
+ changeSpuSyncMode:
+
+
+
+ 6690
+
+
+
+ changeVolume:
+
+
+
+ 6691
+
+
+
+ writeDefaults3DRenderingSettings:
+
+
+
+ 6692
+
+
+
+ writeDefaultsEmulationSettings:
+
+
+
+ 6693
+
+
+
+ writeDefaultsSoundSettings:
+
+
+
+ 6694
+
+
+
+ changeRomSaveType:
+
+
+
+ 6695
+
+
+
+ changeRomSaveType:
+
+
+
+ 6696
+
+
+
+ changeRomSaveType:
+
+
+
+ 6697
+
+
+
+ changeRomSaveType:
+
+
+
+ 6698
+
+
+
+ changeRomSaveType:
+
+
+
+ 6699
+
+
+
+ changeRomSaveType:
+
+
+
+ 6700
+
+
+
+ changeRomSaveType:
+
+
+
+ 6701
+
+
+
+ changeRomSaveType:
+
+
+
+ 6702
+
+
+
+ changeRomSaveType:
+
+
+
+ 6703
+
+
+
+ changeRomSaveType:
+
+
+
+ 6704
+
+
+
+ changeRomSaveType:
+
+
+
+ 6705
+
+
+
+ changeRomSaveType:
+
+
+
+ 6706
+
+
+
+ changeRomSaveType:
+
+
+
+ 6707
+
+
+
+ changeRomSaveType:
+
+
+
+ 6708
+
+
+
+ closeRom:
+
+
+
+ 6709
+
+
+
+ exportRomSave:
+
+
+
+ 6710
+
+
+
+ importRomSave:
+
+
+
+ 6711
+
+
+
+ openRom:
+
+
+
+ 6712
+
+
+
+ revertEmuSaveState:
+
+
+
+ 6713
+
+
+
+ saveEmuSaveState:
+
+
+
+ 6714
+
+
+
+ saveEmuSaveStateAs:
+
+
+
+ 6715
+
+
+
+ toggleAutoFrameSkip:
+
+
+
+ 6716
+
+
+
+ openEmuSaveState:
+
+
+
+ 6744
+
+
+
+ changeFirmwareSettings:
+
+
+
+ 6745
+
+
+
+ value: selection.currentVolumeValue
+
+
+
+
+
+ value: selection.currentVolumeValue
+ value
+ selection.currentVolumeValue
+ 2
+
+
+ 6765
+
+
+
+ value: selection.currentVolumeIcon
+
+
+
+
+
+ value: selection.currentVolumeIcon
+ value
+ selection.currentVolumeIcon
+ 2
+
+
+ 6767
+
+
+
+ value: selection.currentVolumeValue
+
+
+
+
+
+ value: selection.currentVolumeValue
+ value
+ selection.currentVolumeValue
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 6769
+
+
+
+ closeSheet:
+
+
+
+ 6799
+
+
+
+ closeSheet:
+
+
+
+ 6800
+
+
+
+ closeSheet:
+
+
+
+ 6801
+
+
+
+ closeSheet:
+
+
+
+ 6802
+
+
+
+ closeSheet:
+
+
+
+ 6803
+
+
+
+ saveFileMigrationSheet
+
+
+
+ 6804
+
+
+
+ saveStatePrecloseSheet
+
+
+
+ 6805
+
+
+
+ emuControlController
+
+
+
+ 6808
+
+
+
+ content
+
+
+
+ 6826
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6864
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6866
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6869
+
+
+
+ enabled2: selection.hasSelection
+
+
+
+
+
+ enabled2: selection.hasSelection
+ enabled2
+ selection.hasSelection
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6870
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6873
+
+
+
+ enabled2: values.R4Cheat_DatabasePath
+
+
+
+
+
+ enabled2: values.R4Cheat_DatabasePath
+ enabled2
+ values.R4Cheat_DatabasePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6874
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6877
+
+
+
+ enabled2: selection.isSupportedCheatType
+
+
+
+
+
+ enabled2: selection.isSupportedCheatType
+ enabled2
+ selection.isSupportedCheatType
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6878
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6880
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6882
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6886
+
+
+
+ enabled2: selection.hasSelection
+
+
+
+
+
+ enabled2: selection.hasSelection
+ enabled2
+ selection.hasSelection
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6887
+
+
+
+ enabled3: selection.isSupportedCheatType
+
+
+
+
+
+ enabled3: selection.isSupportedCheatType
+ enabled3
+ selection.isSupportedCheatType
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6888
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6890
+
+
+
+ enabled3: selection.currentRom
+
+
+
+
+
+ enabled3: selection.currentRom
+ enabled3
+ selection.currentRom
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6892
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6894
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6896
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6900
+
+
+
+ enabled2: selection.cheatSearchSearchValue
+
+
+
+
+
+ enabled2: selection.cheatSearchSearchValue
+ enabled2
+ selection.cheatSearchSearchValue
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 6901
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6902
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6906
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6907
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6908
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6912
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6913
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6914
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6918
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6919
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6920
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6924
+
+
+
+ enabled2: selection.isSearchStarted
+
+
+
+
+
+ enabled2: selection.isSearchStarted
+ enabled2
+ selection.isSearchStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 6925
+
+
+
+ enabled3: selection.isRunningSearch
+
+
+
+
+
+ enabled3: selection.isRunningSearch
+ enabled3
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6926
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 6929
+
+
+
+ enabled2: selection.isRunningSearch
+
+
+
+
+
+ enabled2: selection.isRunningSearch
+ enabled2
+ selection.isRunningSearch
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 6930
+
+
+
+ emuController
+
+
+
+ 6939
+
+
+
+ newDisplayWindow:
+
+
+
+ 6940
+
+
+
+ value: selection.mainWindow.displayRotation
+
+
+
+
+
+ value: selection.mainWindow.displayRotation
+ value
+ selection.mainWindow.displayRotation
+ 2
+
+
+ 6966
+
+
+
+ value: selection.mainWindow.displayRotation
+
+
+
+
+
+ value: selection.mainWindow.displayRotation
+ value
+ selection.mainWindow.displayRotation
+ 2
+
+
+ 6967
+
+
+
+ selectedTag: selection.selectedExportRomSaveID
+
+
+
+
+
+ selectedTag: selection.selectedExportRomSaveID
+ selectedTag
+ selection.selectedExportRomSaveID
+ 2
+
+
+ 7001
+
+
+
+ emuControl
+
+
+
+ 7003
+
+
+
+ inputManager
+
+
+
+ 7005
+
+
+
+ reset:
+
+
+
+ 7010
+
+
+
+ copy:
+
+
+
+ 7011
+
+
+
+ toggleCheats:
+
+
+
+ 7012
+
+
+
+ viewInput
+
+
+
+ 7108
+
+
+
+ inputPrefsView
+
+
+
+ 7109
+
+
+
+ inputManager
+
+
+
+ 7110
+
+
+
+ prefWindow
+
+
+
+ 7111
+
+
+
+ dataSource
+
+
+
+ 7164
+
+
+
+ delegate
+
+
+
+ 7165
+
+
+
+ removeInput:
+
+
+
+ 7167
+
+
+
+ setInputAdd:
+
+
+
+ 7170
+
+
+
+ inputSettingsGPUState
+
+
+
+ 7296
+
+
+
+ inputSettingsLoadStateSlot
+
+
+
+ 7297
+
+
+
+ inputSettingsMicrophone
+
+
+
+ 7298
+
+
+
+ inputSettingsSaveStateSlot
+
+
+
+ 7299
+
+
+
+ inputSettingsTouch
+
+
+
+ 7300
+
+
+
+ showSettingsSheet:
+
+
+
+ 7321
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7322
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7323
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7324
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7325
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7326
+
+
+
+ inputSettingsController
+
+
+
+ 7391
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7394
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7397
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7400
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7403
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7406
+
+
+
+ selectedTag: selection.intValue0
+
+
+
+
+
+ selectedTag: selection.intValue0
+ selectedTag
+ selection.intValue0
+ 2
+
+
+ 7407
+
+
+
+ selectedTag: selection.intValue0
+
+
+
+
+
+ selectedTag: selection.intValue0
+ selectedTag
+ selection.intValue0
+ 2
+
+
+ 7410
+
+
+
+ selectedTag: selection.intValue0
+
+
+
+
+
+ selectedTag: selection.intValue0
+ selectedTag
+ selection.intValue0
+ 2
+
+
+ 7411
+
+
+
+ enabled: selection.useInputForIntCoord
+
+
+
+
+
+ enabled: selection.useInputForIntCoord
+ enabled
+ selection.useInputForIntCoord
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7417
+
+
+
+ enabled: selection.useInputForIntCoord
+
+
+
+
+
+ enabled: selection.useInputForIntCoord
+ enabled
+ selection.useInputForIntCoord
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7419
+
+
+
+ value: selection.useInputForIntCoord
+
+
+
+
+
+ value: selection.useInputForIntCoord
+ value
+ selection.useInputForIntCoord
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7421
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 7422
+
+
+
+ value: selection.intValue2
+
+
+
+
+
+ value: selection.intValue2
+ value
+ selection.intValue2
+ 2
+
+
+ 7423
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7435
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7438
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7441
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7444
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7447
+
+
+
+ selectedTag: selection.intValue1
+
+
+
+
+
+ selectedTag: selection.intValue1
+ selectedTag
+ selection.intValue1
+
+ NSConditionallySetsEnabled
+
+
+ 2
+
+
+ 7448
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 7453
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 7482
+
+
+
+ inputSettingsSetSpeedLimit
+
+
+
+ 7484
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7490
+
+
+
+ closeSettingsSheet:
+
+
+
+ 7491
+
+
+
+ changeSpeed:
+
+
+
+ 7492
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSContinuouslyUpdatesValue
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 7495
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7674
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7676
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7678
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7682
+
+
+
+ inputProfileController
+
+
+
+ 7685
+
+
+
+ inputProfileMenu
+
+
+
+ 7686
+
+
+
+ inputProfileSheet
+
+
+
+ 7687
+
+
+
+ profileApply:
+
+
+
+ 7688
+
+
+
+ profileRename:
+
+
+
+ 7689
+
+
+
+ profileSave:
+
+
+
+ 7690
+
+
+
+ profileView:
+
+
+
+ 7691
+
+
+
+ profileDelete:
+
+
+
+ 7692
+
+
+
+ profileNew:
+
+
+
+ 7693
+
+
+
+ closeProfileSheet:
+
+
+
+ 7696
+
+
+
+ profileDelete:
+
+
+
+ 7697
+
+
+
+ profileApply:
+
+
+
+ 7698
+
+
+
+ inputProfileNextButton
+
+
+
+ 7700
+
+
+
+ inputProfilePreviousButton
+
+
+
+ 7701
+
+
+
+ profileSelect:
+
+
+
+ 7702
+
+
+
+ profileSelect:
+
+
+
+ 7703
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7705
+
+
+
+ delegate
+
+
+
+ 7706
+
+
+
+ enabled: selection.IsDefaultType
+
+
+
+
+
+ enabled: selection.IsDefaultType
+ enabled
+ selection.IsDefaultType
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 7719
+
+
+
+ delegate
+
+
+
+ 7720
+
+
+
+ inputProfileRenameSheet
+
+
+
+ 7731
+
+
+
+ closeProfileRenameSheet:
+
+
+
+ 7732
+
+
+
+ inputPrefOutlineView
+
+
+
+ 7734
+
+
+
+ inputManager
+
+
+
+ 7741
+
+
+
+ dataSource
+
+
+
+ 7742
+
+
+
+ delegate
+
+
+
+ 7743
+
+
+
+ profileOutlineView
+
+
+
+ 7744
+
+
+
+ value: selection.Name
+
+
+
+
+
+ value: selection.Name
+ value
+ selection.Name
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7749
+
+
+
+ value: selection.Name
+
+
+
+
+
+ value: selection.Name
+ value
+ selection.Name
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7750
+
+
+
+ enabled: selection.Name
+
+
+
+
+
+ enabled: selection.Name
+ enabled
+ selection.Name
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 7752
+
+
+
+ enabled: selection.Name
+
+
+
+
+
+ enabled: selection.Name
+ enabled
+ selection.Name
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 7754
+
+
+
+ value: selection.object1
+
+
+
+
+
+ value: selection.object1
+ value
+ selection.object1
+ 2
+
+
+ 7755
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+ 2
+
+
+ 7763
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+ 2
+
+
+ 7764
+
+
+
+ audioFileChoose:
+
+
+
+ 7769
+
+
+
+ audioFileChooseNone:
+
+
+
+ 7770
+
+
+
+ delegate
+
+
+
+ 7795
+
+
+
+ value: values.DisplayViewCombo_Gap
+
+
+
+
+
+ value: values.DisplayViewCombo_Gap
+ value
+ values.DisplayViewCombo_Gap
+ 2
+
+
+ 7814
+
+
+
+ value: values.DisplayViewCombo_Gap
+
+
+
+
+
+ value: values.DisplayViewCombo_Gap
+ value
+ values.DisplayViewCombo_Gap
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7816
+
+
+
+ value: selection.mainWindow.displayGap
+
+
+
+
+
+ value: selection.mainWindow.displayGap
+ value
+ selection.mainWindow.displayGap
+
+ NSContinuouslyUpdatesValue
+
+
+ 2
+
+
+ 7842
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 7850
+
+
+
+ value: selection.mainWindow.displayGap
+
+
+
+
+
+ value: selection.mainWindow.displayGap
+ value
+ selection.mainWindow.displayGap
+ 2
+
+
+ 7853
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 7885
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 7887
+
+
+
+ slot1Eject:
+
+
+
+ 7888
+
+
+
+ reset:
+
+
+
+ 7889
+
+
+
+ value: selection.slot1StatusText
+
+
+
+
+
+ value: selection.slot1StatusText
+ value
+ selection.slot1StatusText
+ 2
+
+
+ 7892
+
+
+
+ selectedTag: selection.slot1DeviceType
+
+
+
+
+
+ selectedTag: selection.slot1DeviceType
+ selectedTag
+ selection.slot1DeviceType
+ 2
+
+
+ 7896
+
+
+
+ chooseSlot1R4Directory:
+
+
+
+ 7897
+
+
+
+ slot1ManagerWindow
+
+
+
+ 7898
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 7975
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 7976
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 7979
+
+
+
+ loadRecentRom:
+
+
+
+ 7983
+
+
+
+ clearRecentDocuments:
+
+
+
+ 7999
+
+
+
+ loadRecentRom:
+
+
+
+ 8000
+
+
+
+ closeRom:
+
+
+
+ 8001
+
+
+
+ openRom:
+
+
+
+ 8002
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8011
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8017
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8018
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8019
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8020
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8026
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8027
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8028
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8029
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8035
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8036
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8037
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8038
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8042
+
+
+
+ value: selection.maxJITBlockSize
+
+
+
+
+
+ value: selection.maxJITBlockSize
+ value
+ selection.maxJITBlockSize
+ 2
+
+
+ 8062
+
+
+
+ value: selection.maxJITBlockSize
+
+
+
+
+
+ value: selection.maxJITBlockSize
+ value
+ selection.maxJITBlockSize
+ 2
+
+
+ 8063
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+
+
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+ value
+ values.Emulation_MaxJITBlockSize
+ 2
+
+
+ 8064
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+
+
+
+
+
+ value: values.Emulation_MaxJITBlockSize
+ value
+ values.Emulation_MaxJITBlockSize
+ 2
+
+
+ 8065
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8067
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8068
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8069
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8070
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8071
+
+
+
+ selectedTag: selection.cpuEmulationEngine
+
+
+
+
+
+ selectedTag: selection.cpuEmulationEngine
+ selectedTag
+ selection.cpuEmulationEngine
+
+ NSConditionallySetsEnabled
+
+
+ 2
+
+
+ 8072
+
+
+
+ enabled: isAppRunningOnIntel
+
+
+
+
+
+ enabled: isAppRunningOnIntel
+ enabled
+ isAppRunningOnIntel
+ 2
+
+
+ 8073
+
+
+
+ selectedTag: values.Emulation_CPUEmulationEngine
+
+
+
+
+
+ selectedTag: values.Emulation_CPUEmulationEngine
+ selectedTag
+ values.Emulation_CPUEmulationEngine
+
+ NSConditionallySetsEnabled
+
+
+ 2
+
+
+ 8074
+
+
+
+ migrationDelegate
+
+
+
+ 8098
+
+
+
+ updateAndShowWindow:
+
+
+
+ 8133
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 8163
+
+
+
+ revealGameDataFolderInFinder:
+
+
+
+ 8167
+
+
+
+ revealRomInFinder:
+
+
+
+ 8168
+
+
+
+ value: selection.cdsGPU.layerMainGPU
+
+
+
+
+
+ value: selection.cdsGPU.layerMainGPU
+ value
+ selection.cdsGPU.layerMainGPU
+ 2
+
+
+ 8169
+
+
+
+ value: selection.cdsGPU.layerMainBG0
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG0
+ value
+ selection.cdsGPU.layerMainBG0
+ 2
+
+
+ 8170
+
+
+
+ value: selection.cdsGPU.layerMainBG1
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG1
+ value
+ selection.cdsGPU.layerMainBG1
+ 2
+
+
+ 8171
+
+
+
+ value: selection.cdsGPU.layerMainBG2
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG2
+ value
+ selection.cdsGPU.layerMainBG2
+ 2
+
+
+ 8172
+
+
+
+ value: selection.cdsGPU.layerMainBG3
+
+
+
+
+
+ value: selection.cdsGPU.layerMainBG3
+ value
+ selection.cdsGPU.layerMainBG3
+ 2
+
+
+ 8173
+
+
+
+ value: selection.cdsGPU.layerMainOBJ
+
+
+
+
+
+ value: selection.cdsGPU.layerMainOBJ
+ value
+ selection.cdsGPU.layerMainOBJ
+ 2
+
+
+ 8174
+
+
+
+ value: selection.cdsGPU.layerSubGPU
+
+
+
+
+
+ value: selection.cdsGPU.layerSubGPU
+ value
+ selection.cdsGPU.layerSubGPU
+ 2
+
+
+ 8175
+
+
+
+ value: selection.cdsGPU.layerSubBG0
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG0
+ value
+ selection.cdsGPU.layerSubBG0
+ 2
+
+
+ 8176
+
+
+
+ value: selection.cdsGPU.layerSubBG1
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG1
+ value
+ selection.cdsGPU.layerSubBG1
+ 2
+
+
+ 8177
+
+
+
+ value: selection.cdsGPU.layerSubBG2
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG2
+ value
+ selection.cdsGPU.layerSubBG2
+ 2
+
+
+ 8178
+
+
+
+ value: selection.cdsGPU.layerSubBG3
+
+
+
+
+
+ value: selection.cdsGPU.layerSubBG3
+ value
+ selection.cdsGPU.layerSubBG3
+ 2
+
+
+ 8179
+
+
+
+ value: selection.cdsGPU.layerSubOBJ
+
+
+
+
+
+ value: selection.cdsGPU.layerSubOBJ
+ value
+ selection.cdsGPU.layerSubOBJ
+ 2
+
+
+ 8180
+
+
+
+ value: values.EmulationSlot1_R4StoragePath
+
+
+
+
+
+ value: values.EmulationSlot1_R4StoragePath
+ value
+ values.EmulationSlot1_R4StoragePath
+ 2
+
+
+ 8199
+
+
+
+ toolTip: values.EmulationSlot1_R4StoragePath
+
+
+
+
+
+ toolTip: values.EmulationSlot1_R4StoragePath
+ toolTip
+ values.EmulationSlot1_R4StoragePath
+ 2
+
+
+ 8200
+
+
+
+ changeDisplayMode:
+
+
+
+ 8204
+
+
+
+ changeDisplayMode:
+
+
+
+ 8205
+
+
+
+ changeDisplayMode:
+
+
+
+ 8206
+
+
+
+ runToolbarCustomizationPalette:
+
+
+
+ 8208
+
+
+
+ toggleToolbarShown:
+
+
+
+ 8209
+
+
+
+ changeDisplayGap:
+
+
+
+ 8210
+
+
+
+ changeDisplayGap:
+
+
+
+ 8211
+
+
+
+ changeDisplayGap:
+
+
+
+ 8212
+
+
+
+ changeDisplayGap:
+
+
+
+ 8213
+
+
+
+ changeDisplayGap:
+
+
+
+ 8214
+
+
+
+ changeDisplayGap:
+
+
+
+ 8215
+
+
+
+ changeDisplayGap:
+
+
+
+ 8216
+
+
+
+ changeDisplayOrder:
+
+
+
+ 8217
+
+
+
+ changeDisplayOrder:
+
+
+
+ 8218
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 8219
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 8220
+
+
+
+ changeScale:
+
+
+
+ 8221
+
+
+
+ changeScale:
+
+
+
+ 8222
+
+
+
+ changeScale:
+
+
+
+ 8223
+
+
+
+ changeScale:
+
+
+
+ 8224
+
+
+
+ changeScale:
+
+
+
+ 8225
+
+
+
+ changeRotation:
+
+
+
+ 8226
+
+
+
+ changeRotation:
+
+
+
+ 8227
+
+
+
+ changeRotation:
+
+
+
+ 8228
+
+
+
+ changeRotation:
+
+
+
+ 8229
+
+
+
+ changeRotationRelative:
+
+
+
+ 8230
+
+
+
+ changeRotationRelative:
+
+
+
+ 8231
+
+
+
+ changeRotation:
+
+
+
+ 8232
+
+
+
+ changeRotation:
+
+
+
+ 8233
+
+
+
+ toggleStatusBar:
+
+
+
+ 8234
+
+
+
+ toggleKeepMinDisplaySizeAtNormal:
+
+
+
+ 8235
+
+
+
+ writeDefaultsDisplayGap:
+
+
+
+ 8236
+
+
+
+ writeDefaultsDisplayRotation:
+
+
+
+ 8237
+
+
+
+ writeDefaultsDisplayVideoSettings:
+
+
+
+ 8238
+
+
+
+ writeDefaultsHUDSettings:
+
+
+
+ 8239
+
+
+
+ performClose:
+
+
+
+ 8240
+
+
+
+ toggleFullScreenDisplay:
+
+
+
+ 8297
+
+
+
+ value: selection.gameDeveloperWithCode
+
+
+
+
+
+ value: selection.gameDeveloperWithCode
+ value
+ selection.gameDeveloperWithCode
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 8299
+
+
+
+ value: values.General_WillRestoreDisplayWindows
+
+
+
+
+
+ value: values.General_WillRestoreDisplayWindows
+ value
+ values.General_WillRestoreDisplayWindows
+ 2
+
+
+ 8306
+
+
+
+ enabled: values.General_AutoloadROMSelectedPath
+
+
+
+
+
+ enabled: values.General_AutoloadROMSelectedPath
+ enabled
+ values.General_AutoloadROMSelectedPath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8313
+
+
+
+ title: selection.AutoloadRomName
+
+
+
+
+
+ title: selection.AutoloadRomName
+ title
+ selection.AutoloadRomName
+ 2
+
+
+ 8315
+
+
+
+ chooseRomForAutoload:
+
+
+
+ 8317
+
+
+
+ selectedTag: values.General_AutoloadROMOption
+
+
+
+
+
+ selectedTag: values.General_AutoloadROMOption
+ selectedTag
+ values.General_AutoloadROMOption
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8318
+
+
+
+ selectedTag: values.DisplayView_Size
+
+
+
+
+
+ selectedTag: values.DisplayView_Size
+ selectedTag
+ values.DisplayView_Size
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8319
+
+
+
+ selectedTag: values.DisplayView_Mode
+
+
+
+
+
+ selectedTag: values.DisplayView_Mode
+ selectedTag
+ values.DisplayView_Mode
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8320
+
+
+
+ value: values.General_StreamLoadRomData
+
+
+
+
+
+ value: values.General_StreamLoadRomData
+ value
+ values.General_StreamLoadRomData
+ 2
+
+
+ 8328
+
+
+
+ cdsCoreController
+
+
+
+ 8329
+
+
+
+ emuControlController
+
+
+
+ 8330
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 8353
+
+
+
+ delegate
+
+
+
+ 8357
+
+
+
+ deviceListController
+
+
+
+ 8358
+
+
+
+ deviceListTable
+
+
+
+ 8360
+
+
+
+ delegate
+
+
+
+ 8361
+
+
+
+ applySettings:
+
+
+
+ 8362
+
+
+
+ value: arrangedObjects.name
+
+
+
+
+
+ value: arrangedObjects.name
+ value
+ arrangedObjects.name
+
+ NSAllowsEditingMultipleValuesSelection
+
+
+ 2
+
+
+ 8464
+
+
+
+ viewAuto
+
+
+
+ 8465
+
+
+
+ viewCompactFlash
+
+
+
+ 8466
+
+
+
+ viewGBACartridge
+
+
+
+ 8467
+
+
+
+ viewGuitarGrip
+
+
+
+ 8468
+
+
+
+ viewMemoryExpansionPack
+
+
+
+ 8469
+
+
+
+ viewNone
+
+
+
+ 8470
+
+
+
+ viewPaddleController
+
+
+
+ 8471
+
+
+
+ viewPassME
+
+
+
+ 8472
+
+
+
+ viewPiano
+
+
+
+ 8473
+
+
+
+ viewRumblePak
+
+
+
+ 8474
+
+
+
+ viewNoSelection
+
+
+
+ 8475
+
+
+
+ deviceSettingsBox
+
+
+
+ 8476
+
+
+
+ enabled: arrangedObjects.enabled
+
+
+
+
+
+ enabled: arrangedObjects.enabled
+ enabled
+ arrangedObjects.enabled
+ 2
+
+
+ 8506
+
+
+
+ enabled: selection.enabled
+
+
+
+
+
+ enabled: selection.enabled
+ enabled
+ selection.enabled
+ 2
+
+
+ 8508
+
+
+
+ window
+
+
+
+ 8510
+
+
+
+ value: arrangedObjects.isForceFeedbackEnabled
+
+
+
+
+
+ value: arrangedObjects.isForceFeedbackEnabled
+ value
+ arrangedObjects.isForceFeedbackEnabled
+ 2
+
+
+ 8528
+
+
+
+ value: arrangedObjects.productName
+
+
+
+
+
+ value: arrangedObjects.productName
+ value
+ arrangedObjects.productName
+
+ NSConditionallySetsEditable
+
+
+ 2
+
+
+ 8529
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+
+
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+ enabled
+ arrangedObjects.supportsForceFeedback
+ 2
+
+
+ 8530
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+
+
+
+
+
+ enabled: arrangedObjects.supportsForceFeedback
+ enabled
+ arrangedObjects.supportsForceFeedback
+ 2
+
+
+ 8531
+
+
+
+ testRumble:
+
+
+
+ 8533
+
+
+
+ enabled: selection.mpcfDiskImagePath
+
+
+
+
+
+ enabled: selection.mpcfDiskImagePath
+ enabled
+ selection.mpcfDiskImagePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8543
+
+
+
+ content
+
+
+
+ 8549
+
+
+
+ title: selection.mpcfDiskImageName
+
+
+
+
+
+ title: selection.mpcfDiskImageName
+ title
+ selection.mpcfDiskImageName
+ 2
+
+
+ 8551
+
+
+
+ viewUnsupported
+
+
+
+ 8555
+
+
+
+ enabled: selection.isRomLoading
+
+
+
+
+
+ enabled: selection.isRomLoading
+ enabled
+ selection.isRomLoading
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8564
+
+
+
+ animate: selection.isRomLoading
+
+
+
+
+
+ animate: selection.isRomLoading
+ animate
+ selection.isRomLoading
+ 2
+
+
+ 8565
+
+
+
+ value: selection.romNameAndSerialInfo
+
+
+
+
+
+ value: selection.romNameAndSerialInfo
+ value
+ selection.romNameAndSerialInfo
+ 2
+
+
+ 8566
+
+
+
+ value: selection.iconImage
+
+
+
+
+
+ value: selection.iconImage
+ value
+ selection.iconImage
+ 2
+
+
+ 8567
+
+
+
+ slot2WindowController
+
+
+
+ 8574
+
+
+
+ value: selection.autoSelectedDeviceText
+
+
+
+
+
+ value: selection.autoSelectedDeviceText
+ value
+ selection.autoSelectedDeviceText
+ 2
+
+
+ 8577
+
+
+
+ title: selection.mpcfFolderName
+
+
+
+
+
+ title: selection.mpcfFolderName
+ title
+ selection.mpcfFolderName
+ 2
+
+
+ 8586
+
+
+
+ mpcfFileSearchMenu
+
+
+
+ 8587
+
+
+
+ selectedTag: values.Slot2_MPCF_PathOption
+
+
+
+
+
+ selectedTag: values.Slot2_MPCF_PathOption
+ selectedTag
+ values.Slot2_MPCF_PathOption
+ 2
+
+
+ 8589
+
+
+
+ chooseMPCFPath:
+
+
+
+ 8593
+
+
+
+ chooseMPCFPath:
+
+
+
+ 8594
+
+
+
+ chooseMPCFPath:
+
+
+
+ 8595
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 8600
+
+
+
+ inputSettingsPaddleController
+
+
+
+ 8637
+
+
+
+ closeSettingsSheet:
+
+
+
+ 8642
+
+
+
+ closeSettingsSheet:
+
+
+
+ 8643
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 8645
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 8646
+
+
+
+ prefWindowDelegate
+
+
+
+ 8650
+
+
+
+ showInputPreferences:
+
+
+
+ 8662
+
+
+
+ showInputPreferences:
+
+
+
+ 8665
+
+
+
+ toolbar
+
+
+
+ 8666
+
+
+
+ changePrefView:
+
+
+
+ 8671
+
+
+
+ changePrefView:
+
+
+
+ 8672
+
+
+
+ changePrefView:
+
+
+
+ 8673
+
+
+
+ changePrefView:
+
+
+
+ 8674
+
+
+
+ changePrefView:
+
+
+
+ 8675
+
+
+
+ value: selection.deviceManager.slot2StatusText
+
+
+
+
+
+ value: selection.deviceManager.slot2StatusText
+ value
+ selection.deviceManager.slot2StatusText
+ 2
+
+
+ 8676
+
+
+
+ value: selection.gbaCartridgeName
+
+
+
+
+
+ value: selection.gbaCartridgeName
+ value
+ selection.gbaCartridgeName
+ 2
+
+
+ 8702
+
+
+
+ value: selection.gbaSRamName
+
+
+
+
+
+ value: selection.gbaSRamName
+ value
+ selection.gbaSRamName
+ 2
+
+
+ 8703
+
+
+
+ chooseGbaCartridgePath:
+
+
+
+ 8704
+
+
+
+ chooseGbaSRamPath:
+
+
+
+ 8705
+
+
+
+ clearSRamPath:
+
+
+
+ 8708
+
+
+
+ enabled: selection.mpcfFolderPath
+
+
+
+
+
+ enabled: selection.mpcfFolderPath
+ enabled
+ selection.mpcfFolderPath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8709
+
+
+
+ enabled: selection.gbaCartridgePath
+
+
+
+
+
+ enabled: selection.gbaCartridgePath
+ enabled
+ selection.gbaCartridgePath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8711
+
+
+
+ enabled: selection.gbaSRamPath
+
+
+
+
+
+ enabled: selection.gbaSRamPath
+ enabled
+ selection.gbaSRamPath
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 8713
+
+
+
+ value: selection.floatValue0
+
+
+
+
+
+ value: selection.floatValue0
+ value
+ selection.floatValue0
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 8721
+
+
+
+ enabled: selection.isInputAnalog
+
+
+
+
+
+ enabled: selection.isInputAnalog
+ enabled
+ selection.isInputAnalog
+ 2
+
+
+ 8726
+
+
+
+ enabled: selection.isInputAnalog
+
+
+
+
+
+ enabled: selection.isInputAnalog
+ enabled
+ selection.isInputAnalog
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8729
+
+
+
+ hidden: selection.isInputAnalog
+
+
+
+
+
+ hidden: selection.isInputAnalog
+ hidden
+ selection.isInputAnalog
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 8734
+
+
+
+ hidden: selection.isInputAnalog
+
+
+
+
+
+ hidden: selection.isInputAnalog
+ hidden
+ selection.isInputAnalog
+ 2
+
+
+ 8738
+
+
+
+ showInputPreferences:
+
+
+
+ 8745
+
+
+
+ toggleAllDisplays:
+
+
+
+ 8977
+
+
+
+ frameAdvance:
+
+
+
+ 8980
+
+
+
+ frameJump:
+
+
+
+ 8982
+
+
+
+ frameAdvance:
+
+
+
+ 9004
+
+
+
+ frameJump:
+
+
+
+ 9005
+
+
+
+ reset:
+
+
+
+ 9006
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9008
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9012
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9014
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9016
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9018
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 9022
+
+
+
+ enabled2: selection.coreState
+
+
+
+
+
+ enabled2: selection.coreState
+ enabled2
+ selection.coreState
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9028
+
+
+
+ enabled2: selection.coreState
+
+
+
+
+
+ enabled2: selection.coreState
+ enabled2
+ selection.coreState
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 9029
+
+
+
+ changeCoreSpeed:
+
+
+
+ 9065
+
+
+
+ value: selection.isSpeedLimitEnabled
+
+
+
+
+
+ value: selection.isSpeedLimitEnabled
+ value
+ selection.isSpeedLimitEnabled
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 9067
+
+
+
+ value: selection.speedScalar
+
+
+
+
+
+ value: selection.speedScalar
+ value
+ selection.speedScalar
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSConditionallySetsEnabled
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+
+ 2
+
+
+ 9068
+
+
+
+ enabled2: selection.coreState
+
+
+
+
+
+ enabled2: selection.coreState
+ enabled2
+ selection.coreState
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9070
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+
+
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+ enabled
+ selection.isSpeedLimitEnabled
+ 2
+
+
+ 9073
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+
+
+
+
+
+ enabled: selection.isSpeedLimitEnabled
+ enabled
+ selection.isSpeedLimitEnabled
+ 2
+
+
+ 9077
+
+
+
+ changeCoreSpeed:
+
+
+
+ 9078
+
+
+
+ value: selection.frameStatus
+
+
+
+
+
+ value: selection.frameStatus
+ value
+ selection.frameStatus
+
+ NSValidatesImmediately
+
+
+ 2
+
+
+ 9092
+
+
+
+ value: selection.executionSpeedStatus
+
+
+
+
+
+ value: selection.executionSpeedStatus
+ value
+ selection.executionSpeedStatus
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+ NSValidatesImmediately
+
+
+ YES
+
+
+
+
+
+ 2
+
+
+ 9093
+
+
+
+ executionControlWindow
+
+
+
+ 9099
+
+
+
+ coreExecute:
+
+
+
+ 9100
+
+
+
+ corePause:
+
+
+
+ 9101
+
+
+
+ coreExecute:
+
+
+
+ 9102
+
+
+
+ corePause:
+
+
+
+ 9103
+
+
+
+ value: selection.deviceInfoSummary
+
+
+
+
+
+ value: selection.deviceInfoSummary
+ value
+ selection.deviceInfoSummary
+ 2
+
+
+ 9108
+
+
+
+ inputSettingsNDSInput
+
+
+
+ 9111
+
+
+
+ closeSettingsSheet:
+
+
+
+ 9116
+
+
+
+ closeSettingsSheet:
+
+
+
+ 9117
+
+
+
+ value: selection.intValue1
+
+
+
+
+
+ value: selection.intValue1
+ value
+ selection.intValue1
+ 2
+
+
+ 9119
+
+
+
+ openReplay:
+
+
+
+ 9141
+
+
+
+ recordReplay:
+
+
+
+ 9142
+
+
+
+ stopReplay:
+
+
+
+ 9143
+
+
+
+ selectedTag: selection.cdsGPU.render3DRenderingEngine
+
+
+
+
+
+ selectedTag: selection.cdsGPU.render3DRenderingEngine
+ selectedTag
+ selection.cdsGPU.render3DRenderingEngine
+ 2
+
+
+ 9160
+
+
+
+ value: selection.cdsGPU.render3DTextures
+
+
+
+
+
+ value: selection.cdsGPU.render3DTextures
+ value
+ selection.cdsGPU.render3DTextures
+ 2
+
+
+ 9162
+
+
+
+ value: selection.cdsGPU.render3DHighPrecisionColorInterpolation
+
+
+
+
+
+ value: selection.cdsGPU.render3DHighPrecisionColorInterpolation
+ value
+ selection.cdsGPU.render3DHighPrecisionColorInterpolation
+ 2
+
+
+ 9164
+
+
+
+ value: selection.cdsGPU.render3DEdgeMarking
+
+
+
+
+
+ value: selection.cdsGPU.render3DEdgeMarking
+ value
+ selection.cdsGPU.render3DEdgeMarking
+ 2
+
+
+ 9166
+
+
+
+ value: selection.cdsGPU.render3DFog
+
+
+
+
+
+ value: selection.cdsGPU.render3DFog
+ value
+ selection.cdsGPU.render3DFog
+ 2
+
+
+ 9168
+
+
+
+ value: selection.cdsGPU.render3DLineHack
+
+
+
+
+
+ value: selection.cdsGPU.render3DLineHack
+ value
+ selection.cdsGPU.render3DLineHack
+ 2
+
+
+ 9170
+
+
+
+ value: selection.cdsGPU.render3DFragmentSamplingHack
+
+
+
+
+
+ value: selection.cdsGPU.render3DFragmentSamplingHack
+ value
+ selection.cdsGPU.render3DFragmentSamplingHack
+ 2
+
+
+ 9182
+
+
+
+ value: values.Render3D_FragmentSamplingHack
+
+
+
+
+
+ value: values.Render3D_FragmentSamplingHack
+ value
+ values.Render3D_FragmentSamplingHack
+ 2
+
+
+ 9183
+
+
+
+ selectedTag: selection.cdsGPU.render3DThreads
+
+
+
+
+
+ selectedTag: selection.cdsGPU.render3DThreads
+ selectedTag
+ selection.cdsGPU.render3DThreads
+ 2
+
+
+ 9298
+
+
+
+ selectedTag: values.DisplayView_OutputFilter
+
+
+
+
+
+ selectedTag: values.DisplayView_OutputFilter
+ selectedTag
+ values.DisplayView_OutputFilter
+ 2
+
+
+ 9323
+
+
+
+ value: values.DisplayView_Deposterize
+
+
+
+
+
+ value: values.DisplayView_Deposterize
+ value
+ values.DisplayView_Deposterize
+ 2
+
+
+ 9324
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9325
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9326
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9327
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9328
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9329
+
+
+
+ changeVideoOutputFilter:
+
+
+
+ 9330
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9331
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9332
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9333
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9334
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9335
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9336
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9337
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9338
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9339
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9340
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9341
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9342
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9343
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9344
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9345
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9346
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9347
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 9348
+
+
+
+ toggleVideoSourceDeposterize:
+
+
+
+ 9349
+
+
+
+ value: values.DisplayView_FiltersPreferGPU
+
+
+
+
+
+ value: values.DisplayView_FiltersPreferGPU
+ value
+ values.DisplayView_FiltersPreferGPU
+ 2
+
+
+ 9350
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9352
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9353
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9354
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9355
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9356
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+
+
+
+
+
+ enabled: selection.mainWindow.view.canUseShaderBasedFilters
+ enabled
+ selection.mainWindow.view.canUseShaderBasedFilters
+ 2
+
+
+ 9357
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9410
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 9413
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 9415
+
+
+
+ value: selection.enableGdbStubARM9
+
+
+
+
+
+ value: selection.enableGdbStubARM9
+ value
+ selection.enableGdbStubARM9
+ 2
+
+
+ 9420
+
+
+
+ value: selection.enableGdbStubARM7
+
+
+
+
+
+ value: selection.enableGdbStubARM7
+ value
+ selection.enableGdbStubARM7
+ 2
+
+
+ 9421
+
+
+
+ value: selection.gdbStubPortARM9
+
+
+
+
+
+ value: selection.gdbStubPortARM9
+ value
+ selection.gdbStubPortARM9
+ 2
+
+
+ 9422
+
+
+
+ value: selection.gdbStubPortARM7
+
+
+
+
+
+ value: selection.gdbStubPortARM7
+ value
+ selection.gdbStubPortARM7
+ 2
+
+
+ 9423
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9434
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9437
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9439
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9441
+
+
+
+ toggleGDBStubActivate:
+
+
+
+ 9461
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9462
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9463
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9464
+
+
+
+ enabled2: selection.isGdbStubStarted
+
+
+
+
+
+ enabled2: selection.isGdbStubStarted
+ enabled2
+ selection.isGdbStubStarted
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9465
+
+
+
+ enabled2: selection.isUserInterfaceBlockingExecution
+
+
+
+
+
+ enabled2: selection.isUserInterfaceBlockingExecution
+ enabled2
+ selection.isUserInterfaceBlockingExecution
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9467
+
+
+
+ enabled3: selection.isInDebugTrap
+
+
+
+
+
+ enabled3: selection.isInDebugTrap
+ enabled3
+ selection.isInDebugTrap
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSNegateBoolean
+
+
+
+ 2
+
+
+ 9469
+
+
+
+ enabled: selection.currentRom
+
+
+
+
+
+ enabled: selection.currentRom
+ enabled
+ selection.currentRom
+
+ NSValueTransformerName
+ NSIsNil
+
+ 2
+
+
+ 9472
+
+
+
+ exportRomSave:
+
+
+
+ 9659
+
+
+
+ changeRomSaveType:
+
+
+
+ 9660
+
+
+
+ changeRomSaveType:
+
+
+
+ 9661
+
+
+
+ changeRomSaveType:
+
+
+
+ 9662
+
+
+
+ changeRomSaveType:
+
+
+
+ 9663
+
+
+
+ changeRomSaveType:
+
+
+
+ 9664
+
+
+
+ importRomSave:
+
+
+
+ 9665
+
+
+
+ changeRomSaveType:
+
+
+
+ 9666
+
+
+
+ changeRomSaveType:
+
+
+
+ 9667
+
+
+
+ changeRomSaveType:
+
+
+
+ 9668
+
+
+
+ changeRomSaveType:
+
+
+
+ 9669
+
+
+
+ changeRomSaveType:
+
+
+
+ 9670
+
+
+
+ revealRomInFinder:
+
+
+
+ 9671
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9672
+
+
+
+ changeRomSaveType:
+
+
+
+ 9673
+
+
+
+ changeRomSaveType:
+
+
+
+ 9674
+
+
+
+ changeRomSaveType:
+
+
+
+ 9675
+
+
+
+ changeRomSaveType:
+
+
+
+ 9676
+
+
+
+ selectOutputFilter:
+
+
+
+ 9678
+
+
+
+ selectOutputFilter:
+
+
+
+ 9679
+
+
+
+ selectOutputFilter:
+
+
+
+ 9680
+
+
+
+ selectOutputFilter:
+
+
+
+ 9681
+
+
+
+ selectOutputFilter:
+
+
+
+ 9682
+
+
+
+ selectOutputFilter:
+
+
+
+ 9683
+
+
+
+ updateFiltersPreferGPU:
+
+
+
+ 9684
+
+
+
+ updateSourceDeposterize:
+
+
+
+ 9685
+
+
+
+ selectPixelScaler:
+
+
+
+ 9686
+
+
+
+ selectPixelScaler:
+
+
+
+ 9687
+
+
+
+ selectPixelScaler:
+
+
+
+ 9688
+
+
+
+ selectPixelScaler:
+
+
+
+ 9689
+
+
+
+ selectPixelScaler:
+
+
+
+ 9690
+
+
+
+ selectPixelScaler:
+
+
+
+ 9691
+
+
+
+ selectPixelScaler:
+
+
+
+ 9692
+
+
+
+ selectPixelScaler:
+
+
+
+ 9693
+
+
+
+ selectPixelScaler:
+
+
+
+ 9694
+
+
+
+ selectPixelScaler:
+
+
+
+ 9695
+
+
+
+ selectPixelScaler:
+
+
+
+ 9696
+
+
+
+ selectPixelScaler:
+
+
+
+ 9697
+
+
+
+ selectPixelScaler:
+
+
+
+ 9698
+
+
+
+ selectPixelScaler:
+
+
+
+ 9699
+
+
+
+ selectPixelScaler:
+
+
+
+ 9700
+
+
+
+ selectPixelScaler:
+
+
+
+ 9701
+
+
+
+ selectPixelScaler:
+
+
+
+ 9702
+
+
+
+ selectPixelScaler:
+
+
+
+ 9703
+
+
+
+ previewView
+
+
+
+ 9704
+
+
+
+ handleChoice:
+
+
+
+ 9738
+
+
+
+ handleChoice:
+
+
+
+ 9739
+
+
+
+ handleChoice:
+
+
+
+ 9742
+
+
+
+ enabled: filesPresent
+
+
+
+
+
+ enabled: filesPresent
+ enabled
+ filesPresent
+ 2
+
+
+ 9744
+
+
+
+ enabled: filesPresent
+
+
+
+
+
+ enabled: filesPresent
+ enabled
+ filesPresent
+ 2
+
+
+ 9749
+
+
+
+ value: values.General_DoNotAskMigrate
+
+
+
+
+
+ value: values.General_DoNotAskMigrate
+ value
+ values.General_DoNotAskMigrate
+ 2
+
+
+ 9750
+
+
+
+ delegate
+
+
+
+ 9751
+
+
+
+ window
+
+
+
+ 9771
+
+
+
+ dataSource
+
+
+
+ 9773
+
+
+
+ delegate
+
+
+
+ 9774
+
+
+
+ fileTreeOutlineView
+
+
+
+ 9775
+
+
+
+ hidden: filesPresent
+
+
+
+
+
+ hidden: filesPresent
+ hidden
+ filesPresent
+ 2
+
+
+ 9792
+
+
+
+ hidden: filesPresent
+
+
+
+
+
+ hidden: filesPresent
+ hidden
+ filesPresent
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 9793
+
+
+
+ hidden: filesPresent
+
+
+
+
+
+ hidden: filesPresent
+ hidden
+ filesPresent
+ 2
+
+
+ 9794
+
+
+
+ hidden: filesPresent
+
+
+
+
+
+ hidden: filesPresent
+ hidden
+ filesPresent
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 9795
+
+
+
+ value: selection.usedRomSize
+
+
+
+
+
+ value: selection.usedRomSize
+ value
+ selection.usedRomSize
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 9828
+
+
+
+ value: selection.unitCode
+
+
+
+
+
+ value: selection.unitCode
+ value
+ selection.unitCode
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 9875
+
+
+
+ value: selection.unusedCapacity
+
+
+
+
+
+ value: selection.unusedCapacity
+ value
+ selection.unusedCapacity
+
+ YES
+
+ YES
+ NSAllowsEditingMultipleValuesSelection
+ NSRaisesForNotApplicableKeys
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 9876
+
+
+
+ toggleViewState:
+
+
+
+ 9877
+
+
+
+ toggleViewState:
+
+
+
+ 9878
+
+
+
+ toggleViewState:
+
+
+
+ 9879
+
+
+
+ toggleViewState:
+
+
+
+ 9880
+
+
+
+ toggleViewState:
+
+
+
+ 9881
+
+
+
+ armBinariesSectionView
+
+
+
+ 9882
+
+
+
+ generalSectionView
+
+
+
+ 9883
+
+
+
+ titlesSectionView
+
+
+
+ 9884
+
+
+
+ fileSystemSectionView
+
+
+
+ 9885
+
+
+
+ miscSectionView
+
+
+
+ 9886
+
+
+
+ disclosureButton
+
+
+
+ 9888
+
+
+
+ disclosureButton
+
+
+
+ 9889
+
+
+
+ disclosureButton
+
+
+
+ 9890
+
+
+
+ disclosureButton
+
+
+
+ 9891
+
+
+
+ disclosureButton
+
+
+
+ 9892
+
+
+
+ sectionLabel
+
+
+
+ 9893
+
+
+
+ sectionLabel
+
+
+
+ 9894
+
+
+
+ sectionLabel
+
+
+
+ 9895
+
+
+
+ sectionLabel
+
+
+
+ 9896
+
+
+
+ sectionLabel
+
+
+
+ 9897
+
+
+
+ value: selection.currentMicGainValue
+
+
+
+
+
+ value: selection.currentMicGainValue
+ value
+ selection.currentMicGainValue
+ 2
+
+
+ 9956
+
+
+
+ value: selection.currentMicStatusIcon
+
+
+
+
+
+ value: selection.currentMicStatusIcon
+ value
+ selection.currentMicStatusIcon
+ 2
+
+
+ 9958
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 9960
+
+
+
+ enabled: selection.isHardwareMicAvailable
+
+
+
+
+
+ enabled: selection.isHardwareMicAvailable
+ enabled
+ selection.isHardwareMicAvailable
+ 2
+
+
+ 9969
+
+
+
+ value: selection.cdsController.micLevel
+
+
+
+
+
+ value: selection.cdsController.micLevel
+ value
+ selection.cdsController.micLevel
+ 2
+
+
+ 9983
+
+
+
+ showInputPreferences:
+
+
+
+ 9986
+
+
+
+ changeHardwareMicGain:
+
+
+
+ 9995
+
+
+
+ value: selection.cdsController.hardwareMicNameString
+
+
+
+
+
+ value: selection.cdsController.hardwareMicNameString
+ value
+ selection.cdsController.hardwareMicNameString
+ 2
+
+
+ 9997
+
+
+
+ value: selection.cdsController.hardwareMicManufacturerString
+
+
+
+
+
+ value: selection.cdsController.hardwareMicManufacturerString
+ value
+ selection.cdsController.hardwareMicManufacturerString
+ 2
+
+
+ 9999
+
+
+
+ value: selection.cdsController.hardwareMicSampleRateString
+
+
+
+
+
+ value: selection.cdsController.hardwareMicSampleRateString
+ value
+ selection.cdsController.hardwareMicSampleRateString
+ 2
+
+
+ 10001
+
+
+
+ value: selection.cdsController.hardwareMicMute
+
+
+
+
+
+ value: selection.cdsController.hardwareMicMute
+ value
+ selection.cdsController.hardwareMicMute
+ 2
+
+
+ 10008
+
+
+
+ value: selection.currentMicGainValue
+
+
+
+
+
+ value: selection.currentMicGainValue
+ value
+ selection.currentMicGainValue
+ 2
+
+
+ 10010
+
+
+
+ enabled: selection.isHardwareMicAvailable
+
+
+
+
+
+ enabled: selection.isHardwareMicAvailable
+ enabled
+ selection.isHardwareMicAvailable
+ 2
+
+
+ 10012
+
+
+
+ displayVideoSettingsPanel
+
+
+
+ 10016
+
+
+
+ displaySeparationPanel
+
+
+
+ 10017
+
+
+
+ displayRotationPanel
+
+
+
+ 10018
+
+
+
+ changeHardwareMicMute:
+
+
+
+ 10019
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 10024
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 10025
+
+
+
+ toggleVideoFiltersPreferGPU:
+
+
+
+ 10031
+
+
+
+ selectPixelScaler:
+
+
+
+ 10033
+
+
+
+ selectPixelScaler:
+
+
+
+ 10035
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 10048
+
+
+
+ value: selection.cdsController.stylusPressure
+
+
+
+
+
+ value: selection.cdsController.stylusPressure
+ value
+ selection.cdsController.stylusPressure
+ 2
+
+
+ 10066
+
+
+
+ value: selection.cdsController.stylusPressure
+
+
+
+
+
+ value: selection.cdsController.stylusPressure
+ value
+ selection.cdsController.stylusPressure
+ 2
+
+
+ 10071
+
+
+
+ writeDefaultsStylusSettings:
+
+
+
+ 10078
+
+
+
+ value: values.Emulation_StylusPressure
+
+
+
+
+
+ value: values.Emulation_StylusPressure
+ value
+ values.Emulation_StylusPressure
+ 2
+
+
+ 10099
+
+
+
+ value: values.Emulation_StylusPressure
+
+
+
+
+
+ value: values.Emulation_StylusPressure
+ value
+ values.Emulation_StylusPressure
+ 2
+
+
+ 10107
+
+
+
+ value: selection.cdsGPU.gpuScale
+
+
+
+
+
+ value: selection.cdsGPU.gpuScale
+ value
+ selection.cdsGPU.gpuScale
+ 2
+
+
+ 10125
+
+
+
+ value: selection.cdsGPU.gpuScale
+
+
+
+
+
+ value: selection.cdsGPU.gpuScale
+ value
+ selection.cdsGPU.gpuScale
+ 2
+
+
+ 10127
+
+
+
+ value: values.Render3D_ScalingFactor
+
+
+
+
+
+ value: values.Render3D_ScalingFactor
+ value
+ values.Render3D_ScalingFactor
+ 2
+
+
+ 10129
+
+
+
+ value: values.Render3D_ScalingFactor
+
+
+
+
+
+ value: values.Render3D_ScalingFactor
+ value
+ values.Render3D_ScalingFactor
+ 2
+
+
+ 10131
+
+
+
+ value: selection.mainWindow.view.isHUDVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDVisible
+ value
+ selection.mainWindow.view.isHUDVisible
+ 2
+
+
+ 10151
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 10153
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 10154
+
+
+
+ toggleHUDVisibility:
+
+
+
+ 10155
+
+
+
+ value: selection.mainWindow.view.isHUDVideoFPSVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDVideoFPSVisible
+ value
+ selection.mainWindow.view.isHUDVideoFPSVisible
+ 2
+
+
+ 10156
+
+
+
+ value: selection.mainWindow.view.isHUDRender3DFPSVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDRender3DFPSVisible
+ value
+ selection.mainWindow.view.isHUDRender3DFPSVisible
+ 2
+
+
+ 10157
+
+
+
+ value: selection.mainWindow.view.isHUDFrameIndexVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDFrameIndexVisible
+ value
+ selection.mainWindow.view.isHUDFrameIndexVisible
+ 2
+
+
+ 10158
+
+
+
+ value: selection.mainWindow.view.isHUDLagFrameCountVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDLagFrameCountVisible
+ value
+ selection.mainWindow.view.isHUDLagFrameCountVisible
+ 2
+
+
+ 10159
+
+
+
+ toggleShowHUDFrameIndex:
+
+
+
+ 10160
+
+
+
+ toggleShowHUDLagFrameCount:
+
+
+
+ 10161
+
+
+
+ toggleShowHUDRender3DFPS:
+
+
+
+ 10162
+
+
+
+ value: values.DisplayView_EnableHUD
+
+
+
+
+
+ value: values.DisplayView_EnableHUD
+ value
+ values.DisplayView_EnableHUD
+ 2
+
+
+ 10181
+
+
+
+ value: values.HUD_ShowVideoFPS
+
+
+
+
+
+ value: values.HUD_ShowVideoFPS
+ value
+ values.HUD_ShowVideoFPS
+ 2
+
+
+ 10182
+
+
+
+ value: values.HUD_ShowRender3DFPS
+
+
+
+
+
+ value: values.HUD_ShowRender3DFPS
+ value
+ values.HUD_ShowRender3DFPS
+ 2
+
+
+ 10183
+
+
+
+ value: values.HUD_ShowFrameIndex
+
+
+
+
+
+ value: values.HUD_ShowFrameIndex
+ value
+ values.HUD_ShowFrameIndex
+ 2
+
+
+ 10184
+
+
+
+ value: values.HUD_ShowLagFrameCount
+
+
+
+
+
+ value: values.HUD_ShowLagFrameCount
+ value
+ values.HUD_ShowLagFrameCount
+ 2
+
+
+ 10186
+
+
+
+ value: selection.mainWindow.view.isHUDRealTimeClockVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDRealTimeClockVisible
+ value
+ selection.mainWindow.view.isHUDRealTimeClockVisible
+ 2
+
+
+ 10187
+
+
+
+ value: values.HUD_ShowRTC
+
+
+
+
+
+ value: values.HUD_ShowRTC
+ value
+ values.HUD_ShowRTC
+ 2
+
+
+ 10188
+
+
+
+ toggleShowHUDRealTimeClock:
+
+
+
+ 10189
+
+
+
+ value: selection.mainWindow.view.isHUDCPULoadAverageVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDCPULoadAverageVisible
+ value
+ selection.mainWindow.view.isHUDCPULoadAverageVisible
+ 2
+
+
+ 10194
+
+
+
+ toggleShowHUDCPULoadAverage:
+
+
+
+ 10195
+
+
+
+ value: values.HUD_ShowCPULoadAverage
+
+
+
+
+
+ value: values.HUD_ShowCPULoadAverage
+ value
+ values.HUD_ShowCPULoadAverage
+ 2
+
+
+ 10199
+
+
+
+ selectPixelScaler:
+
+
+
+ 10202
+
+
+
+ changeVideoPixelScaler:
+
+
+
+ 10204
+
+
+
+ value: selection.cdsGPU.render3DTextureDeposterize
+
+
+
+
+
+ value: selection.cdsGPU.render3DTextureDeposterize
+ value
+ selection.cdsGPU.render3DTextureDeposterize
+ 2
+
+
+ 10216
+
+
+
+ selectedTag: values.Render3D_TextureScalingFactor
+
+
+
+
+
+ selectedTag: values.Render3D_TextureScalingFactor
+ selectedTag
+ values.Render3D_TextureScalingFactor
+ 2
+
+
+ 10234
+
+
+
+ value: values.Render3D_TextureDeposterize
+
+
+
+
+
+ value: values.Render3D_TextureDeposterize
+ value
+ values.Render3D_TextureDeposterize
+ 2
+
+
+ 10235
+
+
+
+ value: selection.cdsGPU.render3DTextureScalingFactor
+
+
+
+
+
+ value: selection.cdsGPU.render3DTextureScalingFactor
+ value
+ selection.cdsGPU.render3DTextureScalingFactor
+ 2
+
+
+ 10238
+
+
+
+ value: selection.cdsGPU.render3DTextureScalingFactor
+
+
+
+
+
+ value: selection.cdsGPU.render3DTextureScalingFactor
+ value
+ selection.cdsGPU.render3DTextureScalingFactor
+ 2
+
+
+ 10242
+
+
+
+ value: selection.cdsGPU.render3DTextureSmoothing
+
+
+
+
+
+ value: selection.cdsGPU.render3DTextureSmoothing
+ value
+ selection.cdsGPU.render3DTextureSmoothing
+ 2
+
+
+ 10246
+
+
+
+ value: values.Render3D_TextureSmoothing
+
+
+
+
+
+ value: values.Render3D_TextureSmoothing
+ value
+ values.Render3D_TextureSmoothing
+ 2
+
+
+ 10250
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 10254
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 10255
+
+
+
+ changeDisplayOrientation:
+
+
+
+ 10257
+
+
+
+ value: values.Emulation_UseGameSpecificHacks
+
+
+
+
+
+ value: values.Emulation_UseGameSpecificHacks
+ value
+ values.Emulation_UseGameSpecificHacks
+ 2
+
+
+ 10263
+
+
+
+ value: selection.emuFlagUseGameSpecificHacks
+
+
+
+
+
+ value: selection.emuFlagUseGameSpecificHacks
+ value
+ selection.emuFlagUseGameSpecificHacks
+ 2
+
+
+ 10266
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 10271
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 10274
+
+
+
+ value: values.Debug_DisableMetal
+
+
+
+
+
+ value: values.Debug_DisableMetal
+ value
+ values.Debug_DisableMetal
+ 2
+
+
+ 10276
+
+
+
+ setVerticalSyncForNonLayerBackedViews:
+
+
+
+ 10278
+
+
+
+ selectedTag: selection.cdsGPU.gpuColorFormat
+
+
+
+
+
+ selectedTag: selection.cdsGPU.gpuColorFormat
+ selectedTag
+ selection.cdsGPU.gpuColorFormat
+ 2
+
+
+ 10296
+
+
+
+ selectedTag: values.Render3D_ColorFormat
+
+
+
+
+
+ selectedTag: values.Render3D_ColorFormat
+ selectedTag
+ values.Render3D_ColorFormat
+ 2
+
+
+ 10297
+
+
+
+ changeRotation:
+
+
+
+ 10301
+
+
+
+ changeRotation:
+
+
+
+ 10304
+
+
+
+ changeRotation:
+
+
+
+ 10307
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10319
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10320
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10321
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10322
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10323
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10324
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10325
+
+
+
+ changeDisplayVideoSource:
+
+
+
+ 10326
+
+
+
+ selectedTag: values.DisplayView_DisplayMainVideoSource
+
+
+
+
+
+ selectedTag: values.DisplayView_DisplayMainVideoSource
+ selectedTag
+ values.DisplayView_DisplayMainVideoSource
+ 2
+
+
+ 10368
+
+
+
+ selectedTag: values.DisplayView_DisplayTouchVideoSource
+
+
+
+
+
+ selectedTag: values.DisplayView_DisplayTouchVideoSource
+ selectedTag
+ values.DisplayView_DisplayTouchVideoSource
+ 2
+
+
+ 10369
+
+
+
+ selectedTag: values.DisplayViewCombo_Orientation
+
+
+
+
+
+ selectedTag: values.DisplayViewCombo_Orientation
+ selectedTag
+ values.DisplayViewCombo_Orientation
+ 2
+
+
+ 10384
+
+
+
+ selectedTag: values.DisplayViewCombo_Order
+
+
+
+
+
+ selectedTag: values.DisplayViewCombo_Order
+ selectedTag
+ values.DisplayViewCombo_Order
+ 2
+
+
+ 10385
+
+
+
+ toolbarItemGeneral
+
+
+
+ 10392
+
+
+
+ toolbarItemInput
+
+
+
+ 10393
+
+
+
+ toolbarItemSound
+
+
+
+ 10394
+
+
+
+ toolbarItemDisplay
+
+
+
+ 10395
+
+
+
+ toolbarItemEmulation
+
+
+
+ 10396
+
+
+
+ value: selection.intValue3
+
+
+
+
+
+ value: selection.intValue3
+ value
+ selection.intValue3
+ 2
+
+
+ 10415
+
+
+
+ turboPatternControl
+
+
+
+ 10416
+
+
+
+ setTurboPatternBits:
+
+
+
+ 10417
+
+
+
+ updateCustomTurboPatternControls:
+
+
+
+ 10425
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10427
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10428
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10429
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10430
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10431
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10432
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10433
+
+
+
+ setTurboPatternUsingTag:
+
+
+
+ 10434
+
+
+
+ value: selection.mainWindow.view.hudColorVideoFPS
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorVideoFPS
+ value
+ selection.mainWindow.view.hudColorVideoFPS
+ 2
+
+
+ 10455
+
+
+
+ value: selection.mainWindow.view.hudColorRender3DFPS
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorRender3DFPS
+ value
+ selection.mainWindow.view.hudColorRender3DFPS
+ 2
+
+
+ 10456
+
+
+
+ value: selection.mainWindow.view.hudColorFrameIndex
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorFrameIndex
+ value
+ selection.mainWindow.view.hudColorFrameIndex
+ 2
+
+
+ 10457
+
+
+
+ value: selection.mainWindow.view.hudColorLagFrameCount
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorLagFrameCount
+ value
+ selection.mainWindow.view.hudColorLagFrameCount
+ 2
+
+
+ 10458
+
+
+
+ value: selection.mainWindow.view.hudColorCPULoadAverage
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorCPULoadAverage
+ value
+ selection.mainWindow.view.hudColorCPULoadAverage
+ 2
+
+
+ 10459
+
+
+
+ value: selection.mainWindow.view.hudColorRTC
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorRTC
+ value
+ selection.mainWindow.view.hudColorRTC
+ 2
+
+
+ 10461
+
+
+
+ value: values.HUD_Color_VideoFPS
+
+
+
+
+
+ value: values.HUD_Color_VideoFPS
+ value
+ values.HUD_Color_VideoFPS
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10486
+
+
+
+ value: values.HUD_Color_Render3DFPS
+
+
+
+
+
+ value: values.HUD_Color_Render3DFPS
+ value
+ values.HUD_Color_Render3DFPS
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10487
+
+
+
+ value: values.HUD_Color_FrameIndex
+
+
+
+
+
+ value: values.HUD_Color_FrameIndex
+ value
+ values.HUD_Color_FrameIndex
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10488
+
+
+
+ value: values.HUD_Color_LagFrameCount
+
+
+
+
+
+ value: values.HUD_Color_LagFrameCount
+ value
+ values.HUD_Color_LagFrameCount
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10489
+
+
+
+ value: values.HUD_Color_CPULoadAverage
+
+
+
+
+
+ value: values.HUD_Color_CPULoadAverage
+ value
+ values.HUD_Color_CPULoadAverage
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10490
+
+
+
+ value: values.HUD_Color_RTC
+
+
+
+
+
+ value: values.HUD_Color_RTC
+ value
+ values.HUD_Color_RTC
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10491
+
+
+
+ value: selection.mainWindow.view.isHUDInputVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDInputVisible
+ value
+ selection.mainWindow.view.isHUDInputVisible
+ 2
+
+
+ 10492
+
+
+
+ value: selection.mainWindow.view.hudColorInputPendingAndApplied
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorInputPendingAndApplied
+ value
+ selection.mainWindow.view.hudColorInputPendingAndApplied
+ 2
+
+
+ 10493
+
+
+
+ value: selection.mainWindow.view.hudColorInputAppliedOnly
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorInputAppliedOnly
+ value
+ selection.mainWindow.view.hudColorInputAppliedOnly
+ 2
+
+
+ 10494
+
+
+
+ value: selection.mainWindow.view.hudColorInputPendingOnly
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorInputPendingOnly
+ value
+ selection.mainWindow.view.hudColorInputPendingOnly
+ 2
+
+
+ 10497
+
+
+
+ value: values.HUD_ShowInput
+
+
+
+
+
+ value: values.HUD_ShowInput
+ value
+ values.HUD_ShowInput
+ 2
+
+
+ 10500
+
+
+
+ value: values.HUD_Color_Input_PendingAndApplied
+
+
+
+
+
+ value: values.HUD_Color_Input_PendingAndApplied
+ value
+ values.HUD_Color_Input_PendingAndApplied
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10502
+
+
+
+ value: values.HUD_Color_Input_AppliedOnly
+
+
+
+
+
+ value: values.HUD_Color_Input_AppliedOnly
+ value
+ values.HUD_Color_Input_AppliedOnly
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10504
+
+
+
+ value: values.HUD_Color_Input_PendingOnly
+
+
+
+
+
+ value: values.HUD_Color_Input_PendingOnly
+ value
+ values.HUD_Color_Input_PendingOnly
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 10507
+
+
+
+ toggleShowHUDInput:
+
+
+
+ 10510
+
+
+
+ selectedTag: selection.frameJumpBehavior
+
+
+
+
+
+ selectedTag: selection.frameJumpBehavior
+ selectedTag
+ selection.frameJumpBehavior
+ 2
+
+
+ 10512
+
+
+
+ value: selection.frameJumpNumberFramesForward
+
+
+
+
+
+ value: selection.frameJumpNumberFramesForward
+ value
+ selection.frameJumpNumberFramesForward
+ 2
+
+
+ 10514
+
+
+
+ value: selection.frameJumpToFrameIndex
+
+
+
+
+
+ value: selection.frameJumpToFrameIndex
+ value
+ selection.frameJumpToFrameIndex
+ 2
+
+
+ 10516
+
+
+
+ value: selection.mainWindow.view.videoFiltersPreferGPU
+
+
+
+
+
+ value: selection.mainWindow.view.videoFiltersPreferGPU
+ value
+ selection.mainWindow.view.videoFiltersPreferGPU
+ 2
+
+
+ 10517
+
+
+
+ value: selection.mainWindow.view.sourceDeposterize
+
+
+
+
+
+ value: selection.mainWindow.view.sourceDeposterize
+ value
+ selection.mainWindow.view.sourceDeposterize
+ 2
+
+
+ 10518
+
+
+
+ selectedTag: selection.mainWindow.view.outputFilter
+
+
+
+
+
+ selectedTag: selection.mainWindow.view.outputFilter
+ selectedTag
+ selection.mainWindow.view.outputFilter
+ 2
+
+
+ 10519
+
+
+
+ selectedTag: selection.mainWindow.view.pixelScaler
+
+
+
+
+
+ selectedTag: selection.mainWindow.view.pixelScaler
+ selectedTag
+ selection.mainWindow.view.pixelScaler
+ 2
+
+
+ 10520
+
+
+
+ ndsErrorSheet
+
+
+
+ 10532
+
+
+
+ closeSheet:
+
+
+
+ 10533
+
+
+
+ closeSheet:
+
+
+
+ 10534
+
+
+
+ value: selection.errorStatus
+
+
+
+
+
+ value: selection.errorStatus
+ value
+ selection.errorStatus
+ 2
+
+
+ 10535
+
+
+
+ ndsErrorStatusTextField
+
+
+
+ 10536
+
+
+
+ simulateEmulationCrash:
+
+
+
+ 10537
+
+
+
+ hidden: isDeveloperPlusBuild
+
+
+
+
+
+ hidden: isDeveloperPlusBuild
+ hidden
+ isDeveloperPlusBuild
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 10539
+
+
+
+ contentView
+
+
+
+ 10628
+
+
+
+ parentWindow
+
+
+
+ 10629
+
+
+
+ toggle:
+
+
+
+ 10633
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 10715
+
+
+
+ value: saveDirectoryPath
+
+
+
+
+
+ value: saveDirectoryPath
+ value
+ saveDirectoryPath
+ 2
+
+
+ 10968
+
+
+
+ selectedTag: displayRotation
+
+
+
+
+
+ selectedTag: displayRotation
+ selectedTag
+ displayRotation
+ 2
+
+
+ 10975
+
+
+
+ selectedTag: displayMode
+
+
+
+
+
+ selectedTag: displayMode
+ selectedTag
+ displayMode
+ 2
+
+
+ 10976
+
+
+
+ selectedTag: displayLayout
+
+
+
+
+
+ selectedTag: displayLayout
+ selectedTag
+ displayLayout
+ 2
+
+
+ 10977
+
+
+
+ selectedTag: displayOrder
+
+
+
+
+
+ selectedTag: displayOrder
+ selectedTag
+ displayOrder
+ 2
+
+
+ 10978
+
+
+
+ selectedTag: outputFilterID
+
+
+
+
+
+ selectedTag: outputFilterID
+ selectedTag
+ outputFilterID
+ 2
+
+
+ 10979
+
+
+
+ selectedTag: pixelScalerID
+
+
+
+
+
+ selectedTag: pixelScalerID
+ selectedTag
+ pixelScalerID
+ 2
+
+
+ 10980
+
+
+
+ value: useDeposterize
+
+
+
+
+
+ value: useDeposterize
+ value
+ useDeposterize
+ 2
+
+
+ 10981
+
+
+
+ selectedTag: displaySeparation
+
+
+
+
+
+ selectedTag: displaySeparation
+ selectedTag
+ displaySeparation
+ 2
+
+
+ 10984
+
+
+
+ romInfoPanel
+
+
+
+ 10985
+
+
+
+ inputDeviceListController
+
+
+
+ 10987
+
+
+
+ selectedTag: displayScale
+
+
+
+
+
+ selectedTag: displayScale
+ selectedTag
+ displayScale
+ 2
+
+
+ 10999
+
+
+
+ delegate
+
+
+
+ 11014
+
+
+
+ enabled2: selection.emuFlagUseExternalBios
+
+
+
+
+
+ enabled2: selection.emuFlagUseExternalBios
+ enabled2
+ selection.emuFlagUseExternalBios
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 11015
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+ enabled3
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 11017
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+ enabled4
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 11019
+
+
+
+ enabled2: values.Emulation_UseExternalBIOSImages
+
+
+
+
+
+ enabled2: values.Emulation_UseExternalBIOSImages
+ enabled2
+ values.Emulation_UseExternalBIOSImages
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+
+
+
+ 2
+
+
+ 11020
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+
+
+
+
+
+ enabled3: values.BIOS_ARM9ImagePath
+ enabled3
+ values.BIOS_ARM9ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 11022
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+
+
+
+
+
+ enabled4: values.BIOS_ARM7ImagePath
+ enabled4
+ values.BIOS_ARM7ImagePath
+
+ YES
+
+ YES
+ NSMultipleValuesPlaceholder
+ NSNoSelectionPlaceholder
+ NSNotApplicablePlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+
+
+ NSIsNotNil
+
+
+
+ 2
+
+
+ 11024
+
+
+
+ value: selection.mainWindow.view.isHUDExecutionSpeedVisible
+
+
+
+
+
+ value: selection.mainWindow.view.isHUDExecutionSpeedVisible
+ value
+ selection.mainWindow.view.isHUDExecutionSpeedVisible
+ 2
+
+
+ 11032
+
+
+
+ value: selection.mainWindow.view.hudColorExecutionSpeed
+
+
+
+
+
+ value: selection.mainWindow.view.hudColorExecutionSpeed
+ value
+ selection.mainWindow.view.hudColorExecutionSpeed
+ 2
+
+
+ 11033
+
+
+
+ value: values.HUD_ShowExecutionSpeed
+
+
+
+
+
+ value: values.HUD_ShowExecutionSpeed
+ value
+ values.HUD_ShowExecutionSpeed
+ 2
+
+
+ 11040
+
+
+
+ value: values.HUD_Color_ExecutionSpeed
+
+
+
+
+
+ value: values.HUD_Color_ExecutionSpeed
+ value
+ values.HUD_Color_ExecutionSpeed
+
+ NSValueTransformerName
+ RGBA8888ToNSColorValueTransformer
+
+ 2
+
+
+ 11041
+
+
+
+ toggleShowHUDExecutionSpeed:
+
+
+
+ 11042
+
+
+
+ toggleShowHUDVideoFPS:
+
+
+
+ 11043
+
+
+
+ displayHUDSettingsPanel
+
+
+
+ 11044
+
+
+
+ window
+
+
+
+ 11045
+
+
+
+ saveDirectoryPathTextField
+
+
+
+ 11046
+
+
+
+ chooseDirectoryPath:
+
+
+
+ 11047
+
+
+
+ takeScreenshot:
+
+
+
+ 11048
+
+
+
+ screenshotCaptureToolDelegate
+
+
+
+ 11049
+
+
+
+ selectedTag: formatID
+
+
+
+
+
+ selectedTag: formatID
+ selectedTag
+ formatID
+ 2
+
+
+ 11050
+
+
+
+ toggle:
+
+
+
+ 11065
+
+
+
+ contentView
+
+
+
+ 11183
+
+
+
+ parentWindow
+
+
+
+ 11184
+
+
+
+ chooseDirectoryPath:
+
+
+
+ 11186
+
+
+
+ toggleRecordingState:
+
+
+
+ 11187
+
+
+
+ window
+
+
+
+ 11188
+
+
+
+ saveDirectoryPathTextField
+
+
+
+ 11189
+
+
+
+ recordButton
+
+
+
+ 11190
+
+
+
+ selectedTag: displayLayout
+
+
+
+
+
+ selectedTag: displayLayout
+ selectedTag
+ displayLayout
+ 2
+
+
+ 11206
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11207
+
+
+
+ selectedTag: displayRotation
+
+
+
+
+
+ selectedTag: displayRotation
+ selectedTag
+ displayRotation
+ 2
+
+
+ 11208
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11209
+
+
+
+ selectedTag: displayMode
+
+
+
+
+
+ selectedTag: displayMode
+ selectedTag
+ displayMode
+ 2
+
+
+ 11210
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11211
+
+
+
+ selectedTag: displaySeparation
+
+
+
+
+
+ selectedTag: displaySeparation
+ selectedTag
+ displaySeparation
+ 2
+
+
+ 11213
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11216
+
+
+
+ selectedTag: displayOrder
+
+
+
+
+
+ selectedTag: displayOrder
+ selectedTag
+ displayOrder
+ 2
+
+
+ 11218
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11221
+
+
+
+ value: useDeposterize
+
+
+
+
+
+ value: useDeposterize
+ value
+ useDeposterize
+ 2
+
+
+ 11225
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11227
+
+
+
+ selectedTag: outputFilterID
+
+
+
+
+
+ selectedTag: outputFilterID
+ selectedTag
+ outputFilterID
+ 2
+
+
+ 11229
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11232
+
+
+
+ selectedTag: pixelScalerID
+
+
+
+
+
+ selectedTag: pixelScalerID
+ selectedTag
+ pixelScalerID
+ 2
+
+
+ 11234
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11237
+
+
+
+ selectedTag: formatID
+
+
+
+
+
+ selectedTag: formatID
+ selectedTag
+ formatID
+ 2
+
+
+ 11239
+
+
+
+ selectedTag: videoSizeOption
+
+
+
+
+
+ selectedTag: videoSizeOption
+ selectedTag
+ videoSizeOption
+ 2
+
+
+ 11244
+
+
+
+ value: videoWidth
+
+
+
+
+
+ value: videoWidth
+ value
+ videoWidth
+ 2
+
+
+ 11249
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11252
+
+
+
+ value: videoHeight
+
+
+
+
+
+ value: videoHeight
+ value
+ videoHeight
+ 2
+
+
+ 11254
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11257
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11260
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11262
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11264
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11266
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11269
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11271
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11273
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11275
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11277
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 11280
+
+
+
+ avCaptureToolDelegate
+
+
+
+ 11281
+
+
+
+ avCaptureToolDelegate
+
+
+
+ 11282
+
+
+
+ value: saveDirectoryPath
+
+
+
+
+
+ value: saveDirectoryPath
+ value
+ saveDirectoryPath
+ 2
+
+
+ 11286
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11288
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11290
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11292
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11294
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11296
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11298
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11300
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11302
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11304
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11306
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11308
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11310
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11312
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11314
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11316
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11318
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11320
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11322
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11324
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11326
+
+
+
+ enabled: isFileStreamClosing
+
+
+
+
+
+ enabled: isFileStreamClosing
+ enabled
+ isFileStreamClosing
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11328
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11330
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11332
+
+
+
+ enabled: isRecording
+
+
+
+
+
+ enabled: isRecording
+ enabled
+ isRecording
+
+ NSValueTransformerName
+ NSNegateBoolean
+
+ 2
+
+
+ 11335
+
+
+
+ makeKeyAndOrderFront:
+
+
+
+ 11388
+
+
+
+ writeDefaultsWifiSettings:
+
+
+
+ 11400
+
+
+
+ generateNewAddresses:
+
+
+
+ 11401
+
+
+
+ selectedTag: wifiEmulationMode
+
+
+
+
+
+ selectedTag: wifiEmulationMode
+ selectedTag
+ wifiEmulationMode
+ 2
+
+
+ 11403
+
+
+
+ wifiSettingsPanelDelegate
+
+
+
+ 11411
+
+
+
+ title: myMACAddress1String
+
+
+
+
+
+ title: myMACAddress1String
+ title
+ myMACAddress1String
+ 2
+
+
+ 11416
+
+
+
+ title: myMACAddress2String
+
+
+
+
+
+ title: myMACAddress2String
+ title
+ myMACAddress2String
+ 2
+
+
+ 11417
+
+
+
+ title: myMACAddress3String
+
+
+
+
+
+ title: myMACAddress3String
+ title
+ myMACAddress3String
+ 2
+
+
+ 11418
+
+
+
+ title: myMACAddress4String
+
+
+
+
+
+ title: myMACAddress4String
+ title
+ myMACAddress4String
+ 2
+
+
+ 11419
+
+
+
+ selectedTag: bridgeDeviceSelection
+
+
+
+
+
+ selectedTag: bridgeDeviceSelection
+ selectedTag
+ bridgeDeviceSelection
+ 2
+
+
+ 11420
+
+
+
+ bridgeDevicePopUpButton
+
+
+
+ 11421
+
+
+
+ value: selection.ipv4Address_AP1_1
+
+
+
+
+
+ value: selection.ipv4Address_AP1_1
+ value
+ selection.ipv4Address_AP1_1
+ 2
+
+
+ 11698
+
+
+
+ value: selection.ipv4Address_AP1_2
+
+
+
+
+
+ value: selection.ipv4Address_AP1_2
+ value
+ selection.ipv4Address_AP1_2
+ 2
+
+
+ 11699
+
+
+
+ value: selection.ipv4Address_AP1_3
+
+
+
+
+
+ value: selection.ipv4Address_AP1_3
+ value
+ selection.ipv4Address_AP1_3
+ 2
+
+
+ 11700
+
+
+
+ value: selection.ipv4Address_AP1_4
+
+
+
+
+
+ value: selection.ipv4Address_AP1_4
+ value
+ selection.ipv4Address_AP1_4
+ 2
+
+
+ 11701
+
+
+
+ value: selection.ipv4Gateway_AP1_1
+
+
+
+
+
+ value: selection.ipv4Gateway_AP1_1
+ value
+ selection.ipv4Gateway_AP1_1
+ 2
+
+
+ 11702
+
+
+
+ value: selection.ipv4Gateway_AP1_2
+
+
+
+
+
+ value: selection.ipv4Gateway_AP1_2
+ value
+ selection.ipv4Gateway_AP1_2
+ 2
+
+
+ 11703
+
+
+
+ value: selection.ipv4Gateway_AP1_3
+
+
+
+
+
+ value: selection.ipv4Gateway_AP1_3
+ value
+ selection.ipv4Gateway_AP1_3
+ 2
+
+
+ 11704
+
+
+
+ value: selection.ipv4Gateway_AP1_4
+
+
+
+
+
+ value: selection.ipv4Gateway_AP1_4
+ value
+ selection.ipv4Gateway_AP1_4
+ 2
+
+
+ 11705
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_1
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_1
+ value
+ selection.ipv4PrimaryDNS_AP1_1
+ 2
+
+
+ 11706
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_2
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_2
+ value
+ selection.ipv4PrimaryDNS_AP1_2
+ 2
+
+
+ 11707
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_3
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_3
+ value
+ selection.ipv4PrimaryDNS_AP1_3
+ 2
+
+
+ 11708
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_4
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP1_4
+ value
+ selection.ipv4PrimaryDNS_AP1_4
+ 2
+
+
+ 11709
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_1
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_1
+ value
+ selection.ipv4SecondaryDNS_AP1_1
+ 2
+
+
+ 11710
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_2
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_2
+ value
+ selection.ipv4SecondaryDNS_AP1_2
+ 2
+
+
+ 11711
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_3
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_3
+ value
+ selection.ipv4SecondaryDNS_AP1_3
+ 2
+
+
+ 11712
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_4
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP1_4
+ value
+ selection.ipv4SecondaryDNS_AP1_4
+ 2
+
+
+ 11713
+
+
+
+ value: selection.subnetMaskString_AP1
+
+
+
+
+
+ value: selection.subnetMaskString_AP1
+ value
+ selection.subnetMaskString_AP1
+ 2
+
+
+ 11715
+
+
+
+ value: selection.subnetMask_AP1
+
+
+
+
+
+ value: selection.subnetMask_AP1
+ value
+ selection.subnetMask_AP1
+ 2
+
+
+ 11716
+
+
+
+ value: selection.ipv4Address_AP2_1
+
+
+
+
+
+ value: selection.ipv4Address_AP2_1
+ value
+ selection.ipv4Address_AP2_1
+ 2
+
+
+ 11717
+
+
+
+ value: selection.ipv4Address_AP2_2
+
+
+
+
+
+ value: selection.ipv4Address_AP2_2
+ value
+ selection.ipv4Address_AP2_2
+ 2
+
+
+ 11718
+
+
+
+ value: selection.ipv4Address_AP2_3
+
+
+
+
+
+ value: selection.ipv4Address_AP2_3
+ value
+ selection.ipv4Address_AP2_3
+ 2
+
+
+ 11719
+
+
+
+ value: selection.ipv4Address_AP2_4
+
+
+
+
+
+ value: selection.ipv4Address_AP2_4
+ value
+ selection.ipv4Address_AP2_4
+ 2
+
+
+ 11720
+
+
+
+ value: selection.ipv4Gateway_AP2_1
+
+
+
+
+
+ value: selection.ipv4Gateway_AP2_1
+ value
+ selection.ipv4Gateway_AP2_1
+ 2
+
+
+ 11721
+
+
+
+ value: selection.ipv4Gateway_AP2_2
+
+
+
+
+
+ value: selection.ipv4Gateway_AP2_2
+ value
+ selection.ipv4Gateway_AP2_2
+ 2
+
+
+ 11722
+
+
+
+ value: selection.ipv4Gateway_AP2_3
+
+
+
+
+
+ value: selection.ipv4Gateway_AP2_3
+ value
+ selection.ipv4Gateway_AP2_3
+ 2
+
+
+ 11723
+
+
+
+ value: selection.ipv4Gateway_AP2_4
+
+
+
+
+
+ value: selection.ipv4Gateway_AP2_4
+ value
+ selection.ipv4Gateway_AP2_4
+ 2
+
+
+ 11724
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_1
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_1
+ value
+ selection.ipv4PrimaryDNS_AP2_1
+ 2
+
+
+ 11725
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_2
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_2
+ value
+ selection.ipv4PrimaryDNS_AP2_2
+ 2
+
+
+ 11726
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_3
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_3
+ value
+ selection.ipv4PrimaryDNS_AP2_3
+ 2
+
+
+ 11727
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_4
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP2_4
+ value
+ selection.ipv4PrimaryDNS_AP2_4
+ 2
+
+
+ 11728
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_1
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_1
+ value
+ selection.ipv4SecondaryDNS_AP2_1
+ 2
+
+
+ 11729
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_2
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_2
+ value
+ selection.ipv4SecondaryDNS_AP2_2
+ 2
+
+
+ 11730
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_3
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_3
+ value
+ selection.ipv4SecondaryDNS_AP2_3
+ 2
+
+
+ 11731
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_4
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP2_4
+ value
+ selection.ipv4SecondaryDNS_AP2_4
+ 2
+
+
+ 11732
+
+
+
+ value: selection.subnetMask_AP2
+
+
+
+
+
+ value: selection.subnetMask_AP2
+ value
+ selection.subnetMask_AP2
+ 2
+
+
+ 11733
+
+
+
+ value: selection.subnetMaskString_AP2
+
+
+
+
+
+ value: selection.subnetMaskString_AP2
+ value
+ selection.subnetMaskString_AP2
+ 2
+
+
+ 11734
+
+
+
+ value: selection.ipv4Address_AP3_1
+
+
+
+
+
+ value: selection.ipv4Address_AP3_1
+ value
+ selection.ipv4Address_AP3_1
+ 2
+
+
+ 11735
+
+
+
+ value: selection.ipv4Address_AP3_2
+
+
+
+
+
+ value: selection.ipv4Address_AP3_2
+ value
+ selection.ipv4Address_AP3_2
+ 2
+
+
+ 11736
+
+
+
+ value: selection.ipv4Address_AP3_3
+
+
+
+
+
+ value: selection.ipv4Address_AP3_3
+ value
+ selection.ipv4Address_AP3_3
+ 2
+
+
+ 11737
+
+
+
+ value: selection.ipv4Address_AP3_4
+
+
+
+
+
+ value: selection.ipv4Address_AP3_4
+ value
+ selection.ipv4Address_AP3_4
+ 2
+
+
+ 11738
+
+
+
+ value: selection.ipv4Gateway_AP3_1
+
+
+
+
+
+ value: selection.ipv4Gateway_AP3_1
+ value
+ selection.ipv4Gateway_AP3_1
+ 2
+
+
+ 11739
+
+
+
+ value: selection.ipv4Gateway_AP3_2
+
+
+
+
+
+ value: selection.ipv4Gateway_AP3_2
+ value
+ selection.ipv4Gateway_AP3_2
+ 2
+
+
+ 11740
+
+
+
+ value: selection.ipv4Gateway_AP3_3
+
+
+
+
+
+ value: selection.ipv4Gateway_AP3_3
+ value
+ selection.ipv4Gateway_AP3_3
+ 2
+
+
+ 11741
+
+
+
+ value: selection.ipv4Gateway_AP3_4
+
+
+
+
+
+ value: selection.ipv4Gateway_AP3_4
+ value
+ selection.ipv4Gateway_AP3_4
+ 2
+
+
+ 11742
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_1
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_1
+ value
+ selection.ipv4PrimaryDNS_AP3_1
+ 2
+
+
+ 11743
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_2
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_2
+ value
+ selection.ipv4PrimaryDNS_AP3_2
+ 2
+
+
+ 11744
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_3
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_3
+ value
+ selection.ipv4PrimaryDNS_AP3_3
+ 2
+
+
+ 11745
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_4
+
+
+
+
+
+ value: selection.ipv4PrimaryDNS_AP3_4
+ value
+ selection.ipv4PrimaryDNS_AP3_4
+ 2
+
+
+ 11746
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_1
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_1
+ value
+ selection.ipv4SecondaryDNS_AP3_1
+ 2
+
+
+ 11747
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_2
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_2
+ value
+ selection.ipv4SecondaryDNS_AP3_2
+ 2
+
+
+ 11748
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_3
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_3
+ value
+ selection.ipv4SecondaryDNS_AP3_3
+ 2
+
+
+ 11749
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_4
+
+
+
+
+
+ value: selection.ipv4SecondaryDNS_AP3_4
+ value
+ selection.ipv4SecondaryDNS_AP3_4
+ 2
+
+
+ 11750
+
+
+
+ value: selection.subnetMask_AP3
+
+
+
+
+
+ value: selection.subnetMask_AP3
+ value
+ selection.subnetMask_AP3
+ 2
+
+
+ 11751
+
+
+
+ value: selection.subnetMaskString_AP3
+
+
+
+
+
+ value: selection.subnetMaskString_AP3
+ value
+ selection.subnetMaskString_AP3
+ 2
+
+
+ 11752
+
+
+
+ title: selection.firmwareMACAddressSelectionString
+
+
+
+
+
+ title: selection.firmwareMACAddressSelectionString
+ title
+ selection.firmwareMACAddressSelectionString
+ 2
+
+
+ 11755
+
+
+
+ generateFirmwareMACAddress:
+
+
+
+ 11756
+
+
+
+ openglMSAAPopUpButton
+
+
+
+ 11763
+
+
+
+ selectedTag: selection.cdsGPU.render3DMultisampleSize
+
+
+
+
+
+ selectedTag: selection.cdsGPU.render3DMultisampleSize
+ selectedTag
+ selection.cdsGPU.render3DMultisampleSize
+ 2
+
+
+ 11766
+
+
+
+ selectedTag: values.Render3D_MultisampleSize
+
+
+
+
+
+ selectedTag: values.Render3D_MultisampleSize
+ selectedTag
+ values.Render3D_MultisampleSize
+ 2
+
+
+ 11781
+
+
+
+ openglMSAAPopUpButton
+
+
+
+ 11782
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_1
+ value
+ values.FirmwareConfig_IPv4Address_AP1_1
+ 2
+
+
+ 12060
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_2
+ value
+ values.FirmwareConfig_IPv4Address_AP1_2
+ 2
+
+
+ 12061
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_3
+ value
+ values.FirmwareConfig_IPv4Address_AP1_3
+ 2
+
+
+ 12062
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP1_4
+ value
+ values.FirmwareConfig_IPv4Address_AP1_4
+ 2
+
+
+ 12063
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_1
+ value
+ values.FirmwareConfig_IPv4Gateway_AP1_1
+ 2
+
+
+ 12064
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_2
+ value
+ values.FirmwareConfig_IPv4Gateway_AP1_2
+ 2
+
+
+ 12065
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_3
+ value
+ values.FirmwareConfig_IPv4Gateway_AP1_3
+ 2
+
+
+ 12066
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP1_4
+ value
+ values.FirmwareConfig_IPv4Gateway_AP1_4
+ 2
+
+
+ 12067
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_1
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP1_1
+ 2
+
+
+ 12068
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_2
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP1_2
+ 2
+
+
+ 12069
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_3
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP1_3
+ 2
+
+
+ 12070
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP1_4
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP1_4
+ 2
+
+
+ 12071
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_1
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP1_1
+ 2
+
+
+ 12072
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_2
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP1_2
+ 2
+
+
+ 12073
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_3
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP1_3
+ 2
+
+
+ 12074
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP1_4
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP1_4
+ 2
+
+
+ 12075
+
+
+
+ value: values.FirmwareConfig_SubnetMask_AP1
+
+
+
+
+
+ value: values.FirmwareConfig_SubnetMask_AP1
+ value
+ values.FirmwareConfig_SubnetMask_AP1
+ 2
+
+
+ 12076
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_1
+ value
+ values.FirmwareConfig_IPv4Address_AP2_1
+ 2
+
+
+ 12077
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_2
+ value
+ values.FirmwareConfig_IPv4Address_AP2_2
+ 2
+
+
+ 12078
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_3
+ value
+ values.FirmwareConfig_IPv4Address_AP2_3
+ 2
+
+
+ 12079
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP2_4
+ value
+ values.FirmwareConfig_IPv4Address_AP2_4
+ 2
+
+
+ 12080
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_1
+ value
+ values.FirmwareConfig_IPv4Gateway_AP2_1
+ 2
+
+
+ 12081
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_2
+ value
+ values.FirmwareConfig_IPv4Gateway_AP2_2
+ 2
+
+
+ 12082
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_3
+ value
+ values.FirmwareConfig_IPv4Gateway_AP2_3
+ 2
+
+
+ 12083
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP2_4
+ value
+ values.FirmwareConfig_IPv4Gateway_AP2_4
+ 2
+
+
+ 12084
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_1
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP2_1
+ 2
+
+
+ 12085
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_2
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP2_2
+ 2
+
+
+ 12086
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_3
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP2_3
+ 2
+
+
+ 12087
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP2_4
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP2_4
+ 2
+
+
+ 12088
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_1
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP2_1
+ 2
+
+
+ 12089
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_2
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP2_2
+ 2
+
+
+ 12090
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_3
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP2_3
+ 2
+
+
+ 12091
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP2_4
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP2_4
+ 2
+
+
+ 12092
+
+
+
+ value: values.FirmwareConfig_SubnetMask_AP2
+
+
+
+
+
+ value: values.FirmwareConfig_SubnetMask_AP2
+ value
+ values.FirmwareConfig_SubnetMask_AP2
+ 2
+
+
+ 12093
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_1
+ value
+ values.FirmwareConfig_IPv4Address_AP3_1
+ 2
+
+
+ 12094
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_2
+ value
+ values.FirmwareConfig_IPv4Address_AP3_2
+ 2
+
+
+ 12095
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_3
+ value
+ values.FirmwareConfig_IPv4Address_AP3_3
+ 2
+
+
+ 12096
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Address_AP3_4
+ value
+ values.FirmwareConfig_IPv4Address_AP3_4
+ 2
+
+
+ 12097
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_1
+ value
+ values.FirmwareConfig_IPv4Gateway_AP3_1
+ 2
+
+
+ 12098
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_2
+ value
+ values.FirmwareConfig_IPv4Gateway_AP3_2
+ 2
+
+
+ 12099
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_3
+ value
+ values.FirmwareConfig_IPv4Gateway_AP3_3
+ 2
+
+
+ 12100
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4Gateway_AP3_4
+ value
+ values.FirmwareConfig_IPv4Gateway_AP3_4
+ 2
+
+
+ 12101
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_1
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP3_1
+ 2
+
+
+ 12102
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_2
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP3_2
+ 2
+
+
+ 12103
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_3
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP3_3
+ 2
+
+
+ 12104
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4PrimaryDNS_AP3_4
+ value
+ values.FirmwareConfig_IPv4PrimaryDNS_AP3_4
+ 2
+
+
+ 12105
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_1
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_1
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP3_1
+ 2
+
+
+ 12106
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_2
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_2
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP3_2
+ 2
+
+
+ 12107
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_3
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_3
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP3_3
+ 2
+
+
+ 12108
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_4
+
+
+
+
+
+ value: values.FirmwareConfig_IPv4SecondaryDNS_AP3_4
+ value
+ values.FirmwareConfig_IPv4SecondaryDNS_AP3_4
+ 2
+
+
+ 12109
+
+
+
+ value: values.FirmwareConfig_SubnetMask_AP3
+
+
+
+
+
+ value: values.FirmwareConfig_SubnetMask_AP3
+ value
+ values.FirmwareConfig_SubnetMask_AP3
+ 2
+
+
+ 12110
+
+
+
+ value: subnetMaskString_AP1
+
+
+
+
+
+ value: subnetMaskString_AP1
+ value
+ subnetMaskString_AP1
+ 2
+
+
+ 12111
+
+
+
+ value: subnetMaskString_AP2
+
+
+
+
+
+ value: subnetMaskString_AP2
+ value
+ subnetMaskString_AP2
+ 2
+
+
+ 12112
+
+
+
+ value: subnetMaskString_AP3
+
+
+
+
+
+ value: subnetMaskString_AP3
+ value
+ subnetMaskString_AP3
+ 2
+
+
+ 12113
+
+
+
+ generateFirmwareMACAddress:
+
+
+
+ 12118
+
+
+
+ updateSubnetMaskString_AP1:
+
+
+
+ 12119
+
+
+
+ updateSubnetMaskString_AP2:
+
+
+
+ 12120
+
+
+
+ updateSubnetMaskString_AP3:
+
+
+
+ 12121
+
+
+
+ value: firmwareMACAddressString
+
+
+
+
+
+ value: firmwareMACAddressString
+ value
+ firmwareMACAddressString
+ 2
+
+
+ 12122
+
+
+
+ prefWindowDelegate
+
+
+
+ 12123
+
+
+
+ value: selection.currentSessionMACAddressString
+
+
+
+
+
+ value: selection.currentSessionMACAddressString
+ value
+ selection.currentSessionMACAddressString
+ 2
+
+
+ 12126
+
+
+
+ selectedTag: selection.addressSelection
+
+
+
+
+
+ selectedTag: selection.addressSelection
+ selectedTag
+ selection.addressSelection
+ 2
+
+
+ 12129
+
+
+
+ firmwarePanelController
+
+
+
+ 12130
+
+
+
+ value: selection.firmwareMACAddressPendingString
+
+
+
+
+
+ value: selection.firmwareMACAddressPendingString
+ value
+ selection.firmwareMACAddressPendingString
+ 2
+
+
+ 12132
+
+
+
+ value: selection.cdsGPU.openGLEmulateShadowPolygon
+
+
+
+
+
+ value: selection.cdsGPU.openGLEmulateShadowPolygon
+ value
+ selection.cdsGPU.openGLEmulateShadowPolygon
+ 2
+
+
+ 12154
+
+
+
+ value: selection.cdsGPU.openGLEmulateSpecialZeroAlphaBlending
+
+
+
+
+
+ value: selection.cdsGPU.openGLEmulateSpecialZeroAlphaBlending
+ value
+ selection.cdsGPU.openGLEmulateSpecialZeroAlphaBlending
+ 2
+
+
+ 12155
+
+
+
+ value: selection.cdsGPU.openGLEmulateDepthEqualsTestTolerance
+
+
+
+
+
+ value: selection.cdsGPU.openGLEmulateDepthEqualsTestTolerance
+ value
+ selection.cdsGPU.openGLEmulateDepthEqualsTestTolerance
+ 2
+
+
+ 12156
+
+
+
+ value: selection.cdsGPU.openGLEmulateDepthLEqualPolygonFacing
+
+
+
+
+
+ value: selection.cdsGPU.openGLEmulateDepthLEqualPolygonFacing
+ value
+ selection.cdsGPU.openGLEmulateDepthLEqualPolygonFacing
+ 2
+
+
+ 12157
+
+
+
+ value: values.Render3D_OpenGL_EmulateShadowPolygon
+
+
+
+
+
+ value: values.Render3D_OpenGL_EmulateShadowPolygon
+ value
+ values.Render3D_OpenGL_EmulateShadowPolygon
+ 2
+
+
+ 12170
+
+
+
+ value: values.Render3D_OpenGL_EmulateSpecialZeroAlphaBlending
+
+
+
+
+
+ value: values.Render3D_OpenGL_EmulateSpecialZeroAlphaBlending
+ value
+ values.Render3D_OpenGL_EmulateSpecialZeroAlphaBlending
+ 2
+
+
+ 12171
+
+
+
+ value: values.Render3D_OpenGL_EmulateDepthEqualTestTolerance
+
+
+
+
+
+ value: values.Render3D_OpenGL_EmulateDepthEqualTestTolerance
+ value
+ values.Render3D_OpenGL_EmulateDepthEqualTestTolerance
+ 2
+
+
+ 12172
+
+
+
+ value: values.Render3D_OpenGL_EmulateDepthLEqualPolygonFacing
+
+
+
+
+
+ value: values.Render3D_OpenGL_EmulateDepthLEqualPolygonFacing
+ value
+ values.Render3D_OpenGL_EmulateDepthLEqualPolygonFacing
+ 2
+
+
+ 12173
+
+
+
+
+ YES
+
+ 0
+
+
+
+
+
+ -2
+
+
+ File's Owner
+
+
+ -1
+
+
+ First Responder
+
+
+ -3
+
+
+ Application
+
+
+ 29
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 19
+
+
+ YES
+
+
+
+
+
+ 56
+
+
+ YES
+
+
+
+
+
+ 83
+
+
+ YES
+
+
+
+
+
+ 81
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 75
+
+
+
+
+ 80
+
+
+
+
+ 72
+
+
+
+
+ 124
+
+
+ YES
+
+
+
+
+
+ 79
+
+
+
+
+ 112
+
+
+
+
+ 74
+
+
+
+
+ 57
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 58
+
+
+
+
+ 134
+
+
+
+
+ 150
+
+
+
+
+ 136
+
+
+
+
+ 144
+
+
+
+
+ 129
+
+
+
+
+ 143
+
+
+
+
+ 236
+
+
+
+
+ 131
+
+
+ YES
+
+
+
+
+
+ 149
+
+
+
+
+ 145
+
+
+
+
+ 130
+
+
+
+
+ 295
+
+
+ YES
+
+
+
+
+
+ 296
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 297
+
+
+
+
+ 298
+
+
+
+
+ 494
+
+
+ App Delegate
+
+
+ 534
+
+
+
+
+ 535
+
+
+
+
+ 538
+
+
+ YES
+
+
+
+
+
+ 539
+
+
+ YES
+
+
+
+
+ 541
+
+
+ YES
+
+
+
+
+
+ 542
+
+
+ YES
+
+
+
+
+ 575
+
+
+ YES
+
+
+
+
+
+ 576
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 594
+
+
+
+
+ 596
+
+
+
+
+ 607
+
+
+ YES
+
+
+
+
+
+ 627
+
+
+ YES
+
+
+
+
+
+
+ 628
+
+
+ YES
+
+
+
+
+ 629
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 634
+
+
+
+
+ 635
+
+
+
+
+ 714
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cheat Search Drawer Content View
+
+
+ 715
+
+
+ Cheat Search Drawer
+
+
+ 783
+
+
+ YES
+
+
+
+
+
+ 784
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 785
+
+
+
+
+ 787
+
+
+ YES
+
+
+
+
+
+ 788
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 789
+
+
+
+
+ 794
+
+
+ YES
+
+
+
+
+
+ 795
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 796
+
+
+ YES
+
+
+
+
+
+ 797
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 823
+
+
+ YES
+
+
+
+
+
+ 824
+
+
+
+
+ 825
+
+
+ YES
+
+
+
+
+
+ 826
+
+
+
+
+ 827
+
+
+ YES
+
+
+
+
+
+ 828
+
+
+
+
+ 829
+
+
+ YES
+
+
+
+
+
+ 830
+
+
+
+
+ 831
+
+
+ YES
+
+
+
+
+
+ 832
+
+
+
+
+ 835
+
+
+ YES
+
+
+
+
+
+ 836
+
+
+
+
+ 843
+
+
+ YES
+
+
+
+
+
+ 844
+
+
+
+
+ 845
+
+
+ YES
+
+
+
+
+
+ 846
+
+
+
+
+ 850
+
+
+
+
+ 855
+
+
+
+
+ 861
+
+
+ YES
+
+
+
+
+
+ 862
+
+
+ YES
+
+
+
+
+
+ 1113
+
+
+
+
+ 1114
+
+
+
+
+ 1115
+
+
+
+
+ 1118
+
+
+
+
+ 1119
+
+
+
+
+ 1120
+
+
+
+
+ 1298
+
+
+ YES
+
+
+
+
+
+
+ General Preferences View
+
+
+ 1538
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1299
+
+
+ YES
+
+
+
+
+
+ 1300
+
+
+
+
+ 1541
+
+
+ YES
+
+
+
+
+
+ 1542
+
+
+ YES
+
+
+
+
+
+ 1543
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1544
+
+
+
+
+ 1545
+
+
+
+
+ 1584
+
+
+ YES
+
+
+
+ Display Preferences View
+
+
+ 1615
+
+
+ YES
+
+
+
+
+
+
+
+ 1616
+
+
+ YES
+
+
+
+
+
+ 1619
+
+
+ YES
+
+
+
+
+
+
+
+ 1620
+
+
+ YES
+
+
+
+
+
+ 1621
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 1634
+
+
+ YES
+
+
+
+
+
+ 1635
+
+
+
+
+ 1650
+
+
+ YES
+
+
+
+
+
+ 1651
+
+
+
+
+ 1679
+
+
+
+
+ 1680
+
+
+
+
+ 1681
+
+
+
+
+ 1682
+
+
+
+
+ 1721
+
+
+ CocoaDS Core Controller
+
+
+ 1855
+
+
+
+
+ 1856
+
+
+ YES
+
+
+
+
+
+ 1857
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1858
+
+
+ YES
+
+
+
+
+
+ 1859
+
+
+
+
+ 1976
+
+
+ YES
+
+
+
+
+
+ 1977
+
+
+
+
+ 1978
+
+
+ YES
+
+
+
+
+
+ 1979
+
+
+
+
+ 1980
+
+
+ YES
+
+
+
+
+
+ 1981
+
+
+
+
+ 1982
+
+
+ YES
+
+
+
+
+
+ 1983
+
+
+
+
+ 1986
+
+
+
+
+ 1987
+
+
+ YES
+
+
+
+
+
+ 1988
+
+
+ YES
+
+
+
+
+
+ 1998
+
+
+ YES
+
+
+
+
+
+ 1999
+
+
+
+
+ 2000
+
+
+
+
+ 2095
+
+
+
+
+ 2098
+
+
+
+
+ 2154
+
+
+ YES
+
+
+
+
+
+ 2155
+
+
+
+
+ 2246
+
+
+
+
+ 2248
+
+
+ YES
+
+
+
+
+
+
+
+
+ Sound Preferences View
+
+
+ 2250
+
+
+ YES
+
+
+
+
+
+
+
+ 2253
+
+
+ YES
+
+
+
+
+
+ 2254
+
+
+
+
+ 2257
+
+
+ YES
+
+
+
+
+
+ 2258
+
+
+ YES
+
+
+
+
+
+ 2262
+
+
+
+
+ 2265
+
+
+ YES
+
+
+
+
+
+ 2266
+
+
+
+
+ 2327
+
+
+ YES
+
+
+
+
+
+ 2328
+
+
+ YES
+
+
+
+
+
+
+
+
+ 2329
+
+
+
+
+ 2330
+
+
+
+
+ 2331
+
+
+
+
+ 2332
+
+
+
+
+ 2339
+
+
+ YES
+
+
+
+ Emulation Preferences View
+
+
+ 2340
+
+
+
+
+ 2382
+
+
+ YES
+
+
+
+
+
+ 2383
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2384
+
+
+
+
+ 2385
+
+
+
+
+ 2386
+
+
+
+
+ 2387
+
+
+
+
+ 2388
+
+
+
+
+ 2389
+
+
+
+
+ 2390
+
+
+
+
+ 2391
+
+
+
+
+ 2392
+
+
+
+
+ 2393
+
+
+
+
+ 2394
+
+
+
+
+ 2395
+
+
+
+
+ 2396
+
+
+
+
+ 2397
+
+
+
+
+ 2398
+
+
+
+
+ 2399
+
+
+
+
+ 2427
+
+
+ YES
+
+
+
+
+
+
+ 2428
+
+
+ YES
+
+
+
+
+
+ 2429
+
+
+ YES
+
+
+
+
+
+ 2430
+
+
+
+
+ 2431
+
+
+ YES
+
+
+
+
+
+ 2432
+
+
+ YES
+
+
+
+
+
+ 2433
+
+
+ YES
+
+
+
+
+
+
+
+ 2434
+
+
+
+
+ 2435
+
+
+
+
+ 2436
+
+
+
+
+ 2437
+
+
+ YES
+
+
+
+
+
+
+
+ 2438
+
+
+
+
+ 2439
+
+
+
+
+ 2440
+
+
+
+
+ 2482
+
+
+
+
+ 2483
+
+
+
+
+ 2518
+
+
+ YES
+
+
+
+
+
+ 2519
+
+
+
+
+ 608
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2556
+
+
+
+
+ 2609
+
+
+
+
+ 2610
+
+
+
+
+ 2653
+
+
+ ROM Info Panel Controller
+
+
+ 2847
+
+
+ YES
+
+
+
+
+
+ 2848
+
+
+ YES
+
+
+
+
+
+
+
+
+ 2894
+
+
+ YES
+
+
+
+
+
+ 2895
+
+
+ YES
+
+
+
+
+
+ 2896
+
+
+ YES
+
+
+
+
+
+ 2897
+
+
+ YES
+
+
+
+
+
+ 2900
+
+
+
+
+ 2901
+
+
+
+
+ 2902
+
+
+
+
+ 2903
+
+
+
+
+ 3063
+
+
+ YES
+
+
+
+
+
+
+ 3059
+
+
+ YES
+
+
+
+
+
+ 3060
+
+
+
+
+ 3061
+
+
+ YES
+
+
+
+
+
+ 3062
+
+
+
+
+ 3146
+
+
+
+
+ 3148
+
+
+ Firmware Panel Controller
+
+
+ 3204
+
+
+ YES
+
+
+
+
+
+ 3205
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 3206
+
+
+
+
+ 3207
+
+
+
+
+ 3208
+
+
+
+
+ 3209
+
+
+
+
+ 3210
+
+
+
+
+ 3211
+
+
+
+
+ 3213
+
+
+
+
+ 3214
+
+
+
+
+ 3456
+
+
+ YES
+
+
+
+
+
+ 3457
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3458
+
+
+ YES
+
+
+
+
+
+ 3459
+
+
+ YES
+
+
+
+
+
+ 3460
+
+
+ YES
+
+
+
+
+
+ 3461
+
+
+ YES
+
+
+
+
+
+ 3462
+
+
+
+
+ 3463
+
+
+
+
+ 3464
+
+
+
+
+ 3465
+
+
+
+
+ 3471
+
+
+ YES
+
+
+
+
+
+ 3472
+
+
+
+
+ 3480
+
+
+ YES
+
+
+
+
+
+ 3481
+
+
+
+
+ 3482
+
+
+
+
+ 3488
+
+
+ YES
+
+
+
+
+
+ 3489
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3496
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3497
+
+
+
+
+ 3498
+
+
+
+
+ 3499
+
+
+ YES
+
+
+
+
+
+
+
+ 3501
+
+
+ YES
+
+
+
+
+
+ 3507
+
+
+ YES
+
+
+
+
+
+ 3508
+
+
+
+
+ 3509
+
+
+
+
+ 3516
+
+
+ YES
+
+
+
+
+
+ 3517
+
+
+
+
+ 3520
+
+
+ Preferences Window Controller
+
+
+ 3522
+
+
+
+
+ 3523
+
+
+
+
+ 3712
+
+
+ YES
+
+
+
+
+
+ 3713
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 3716
+
+
+ YES
+
+
+
+
+
+ 3717
+
+
+ YES
+
+
+
+
+
+
+ 3718
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3719
+
+
+
+
+ 3720
+
+
+
+
+ 3721
+
+
+
+
+ 3722
+
+
+ YES
+
+
+
+
+
+
+
+ 3723
+
+
+
+
+ 3724
+
+
+
+
+ 3725
+
+
+
+
+ 3732
+
+
+
+
+ 3733
+
+
+ YES
+
+
+
+
+
+ 3714
+
+
+ YES
+
+
+
+
+
+ 3715
+
+
+
+
+ 3747
+
+
+ YES
+
+
+
+
+
+
+
+ 3736
+
+
+ YES
+
+
+
+
+
+ 3742
+
+
+
+
+ 3737
+
+
+ YES
+
+
+
+
+
+ 3740
+
+
+ YES
+
+
+
+
+
+ 3741
+
+
+
+
+ 3738
+
+
+ YES
+
+
+
+
+
+ 3739
+
+
+
+
+ 3748
+
+
+ YES
+
+
+
+
+
+ 3749
+
+
+
+
+ 3751
+
+
+
+
+ 3752
+
+
+
+
+ 3784
+
+
+ YES
+
+
+
+
+
+ 3648
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3667
+
+
+
+
+ 3666
+
+
+
+
+ 3664
+
+
+
+
+ 3663
+
+
+
+
+ 3662
+
+
+
+
+ 3661
+
+
+
+
+ 3660
+
+
+
+
+ 3659
+
+
+
+
+ 3658
+
+
+
+
+ 3657
+
+
+
+
+ 3656
+
+
+
+
+ 3655
+
+
+
+
+ 3654
+
+
+
+
+ 3653
+
+
+
+
+ 3652
+
+
+
+
+ 3651
+
+
+
+
+ 3650
+
+
+
+
+ 3649
+
+
+
+
+ 3790
+
+
+ YES
+
+
+
+
+
+ 3791
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3786
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3771
+
+
+ YES
+
+
+
+
+
+ 3772
+
+
+
+
+ 3793
+
+
+ YES
+
+
+
+
+
+ 3794
+
+
+
+
+ 3837
+
+
+ YES
+
+
+
+
+
+ 3838
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3839
+
+
+
+
+ 3840
+
+
+
+
+ 3841
+
+
+
+
+ 3885
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3935
+
+
+ YES
+
+
+
+
+
+ 3936
+
+
+ YES
+
+
+
+
+
+
+
+ 3937
+
+
+
+
+ 3938
+
+
+
+
+ 3939
+
+
+
+
+ 3959
+
+
+ CocoaDS Sound Controller
+
+
+ 3965
+
+
+ YES
+
+
+
+
+
+
+
+
+ 3966
+
+
+
+
+ 3967
+
+
+
+
+ 3968
+
+
+
+
+ 3969
+
+
+
+
+ 4024
+
+
+ YES
+
+
+
+
+
+ 4001
+
+
+ YES
+
+
+
+
+
+
+
+ 4004
+
+
+
+
+ 4003
+
+
+
+
+ 4002
+
+
+
+
+ 4027
+
+
+ YES
+
+
+
+
+
+ 4028
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 4029
+
+
+ YES
+
+
+
+
+
+
+
+ 4030
+
+
+ YES
+
+
+
+
+
+ 4031
+
+
+
+
+ 4032
+
+
+ YES
+
+
+
+
+
+
+
+ 4033
+
+
+ YES
+
+
+
+
+
+ 4034
+
+
+
+
+ 4035
+
+
+ YES
+
+
+
+
+
+ 4036
+
+
+
+
+ 4037
+
+
+ YES
+
+
+
+
+
+ 4038
+
+
+
+
+ 4039
+
+
+ YES
+
+
+
+
+
+
+
+
+ 4040
+
+
+ YES
+
+
+
+
+
+ 4041
+
+
+
+
+ 4043
+
+
+ YES
+
+
+
+
+
+ 4044
+
+
+
+
+ 4045
+
+
+ YES
+
+
+
+
+
+ 4046
+
+
+
+
+ 4047
+
+
+ YES
+
+
+
+
+
+
+ 4048
+
+
+ YES
+
+
+
+
+
+ 4049
+
+
+
+
+ 4050
+
+
+ YES
+
+
+
+
+
+ 4051
+
+
+
+
+ 4053
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Internal Firmware Drawer Content View
+
+
+ 4054
+
+
+ Internal Firmware Drawer
+
+
+ 4059
+
+
+ YES
+
+
+
+
+
+ 4060
+
+
+
+
+ 4066
+
+
+ YES
+
+
+
+
+
+ 4067
+
+
+
+
+ 4069
+
+
+ YES
+
+
+
+
+
+ 4070
+
+
+ YES
+
+
+
+
+
+ 4071
+
+
+ YES
+
+
+
+
+
+ 4072
+
+
+ YES
+
+
+
+
+
+ 4073
+
+
+ YES
+
+
+
+
+
+ 4074
+
+
+ YES
+
+
+
+
+
+ 4075
+
+
+ YES
+
+
+
+
+
+ 4076
+
+
+ YES
+
+
+
+
+
+ 4078
+
+
+ YES
+
+
+
+
+
+ 4079
+
+
+ YES
+
+
+
+
+
+ 4080
+
+
+ YES
+
+
+
+
+
+ 4081
+
+
+ YES
+
+
+
+
+
+ 4082
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4083
+
+
+
+
+ 4084
+
+
+
+
+ 4085
+
+
+
+
+ 4086
+
+
+
+
+ 4087
+
+
+
+
+ 4088
+
+
+
+
+ 4089
+
+
+
+
+ 4090
+
+
+
+
+ 4091
+
+
+
+
+ 4092
+
+
+
+
+ 4093
+
+
+
+
+ 4094
+
+
+
+
+ 4095
+
+
+
+
+ 4096
+
+
+
+
+ 4097
+
+
+
+
+ 4098
+
+
+
+
+ 4099
+
+
+ YES
+
+
+
+
+
+ 4100
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 4101
+
+
+
+
+ 4102
+
+
+
+
+ 4103
+
+
+
+
+ 4104
+
+
+
+
+ 4105
+
+
+
+
+ 4106
+
+
+
+
+ 4107
+
+
+
+
+ 4109
+
+
+
+
+ 4110
+
+
+
+
+ 4111
+
+
+
+
+ 4112
+
+
+
+
+ 4113
+
+
+
+
+ 4114
+
+
+
+
+ 4115
+
+
+
+
+ 4116
+
+
+
+
+ 4179
+
+
+ YES
+
+
+
+
+
+ 4180
+
+
+
+
+ 4181
+
+
+ YES
+
+
+
+
+
+ 4182
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4191
+
+
+ YES
+
+
+
+
+
+ 4192
+
+
+ YES
+
+
+
+
+
+ 4193
+
+
+ YES
+
+
+
+
+
+ 4194
+
+
+ YES
+
+
+
+
+
+ 4195
+
+
+ YES
+
+
+
+
+
+ 4196
+
+
+ YES
+
+
+
+
+
+ 4197
+
+
+ YES
+
+
+
+
+
+ 4198
+
+
+ YES
+
+
+
+
+
+ 4199
+
+
+ YES
+
+
+
+
+
+ 4200
+
+
+ YES
+
+
+
+
+
+ 4201
+
+
+ YES
+
+
+
+
+
+ 4202
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4203
+
+
+
+
+ 4204
+
+
+
+
+ 4205
+
+
+
+
+ 4206
+
+
+
+
+ 4207
+
+
+
+
+ 4208
+
+
+
+
+ 4209
+
+
+
+
+ 4210
+
+
+
+
+ 4211
+
+
+
+
+ 4212
+
+
+
+
+ 4213
+
+
+
+
+ 4214
+
+
+
+
+ 4215
+
+
+
+
+ 4216
+
+
+
+
+ 4217
+
+
+
+
+ 4218
+
+
+
+
+ 4219
+
+
+ YES
+
+
+
+
+
+ 4220
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 4221
+
+
+
+
+ 4222
+
+
+
+
+ 4223
+
+
+
+
+ 4224
+
+
+
+
+ 4225
+
+
+
+
+ 4226
+
+
+
+
+ 4227
+
+
+
+
+ 4228
+
+
+
+
+ 4229
+
+
+
+
+ 4230
+
+
+
+
+ 4231
+
+
+
+
+ 4232
+
+
+
+
+ 4233
+
+
+
+
+ 4234
+
+
+
+
+ 4240
+
+
+ YES
+
+
+
+
+
+ 4241
+
+
+
+
+ 4277
+
+
+ YES
+
+
+
+
+
+ 4278
+
+
+
+
+ 4559
+
+
+ YES
+
+
+
+
+
+ 4560
+
+
+
+
+ 4561
+
+
+ YES
+
+
+
+
+
+ 4562
+
+
+
+
+ 4565
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 4574
+
+
+ YES
+
+
+
+
+
+ 4575
+
+
+ YES
+
+
+
+
+
+ 4576
+
+
+ YES
+
+
+
+
+
+
+ 4577
+
+
+
+
+ 4578
+
+
+
+
+ 4580
+
+
+
+
+ 4581
+
+
+ YES
+
+
+
+
+
+ 4582
+
+
+
+
+ 4583
+
+
+ YES
+
+
+
+
+
+ 4584
+
+
+
+
+ 4585
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ Internal Cheat View
+
+
+ 4586
+
+
+ YES
+
+
+
+
+
+ 4587
+
+
+ YES
+
+
+
+
+
+ 4588
+
+
+ YES
+
+
+
+
+
+ 4589
+
+
+ YES
+
+
+
+
+
+ 4590
+
+
+ YES
+
+
+
+
+
+ 4593
+
+
+ YES
+
+
+
+
+
+ 4594
+
+
+
+
+ 4597
+
+
+ YES
+
+
+
+
+
+ 4598
+
+
+
+
+ 4599
+
+
+
+
+ 4600
+
+
+
+
+ 4601
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 4602
+
+
+
+
+ 4603
+
+
+
+
+ 4604
+
+
+
+
+ 4605
+
+
+
+
+ 4606
+
+
+
+
+ 4610
+
+
+ YES
+
+
+
+
+ Action Replay Cheat View
+
+
+ 4632
+
+
+ YES
+
+
+
+
+
+ 4633
+
+
+ YES
+
+
+
+
+
+
+
+ 4634
+
+
+
+
+ 4635
+
+
+
+
+ 4636
+
+
+
+
+ 4637
+
+
+
+
+ 4639
+
+
+ YES
+
+
+
+
+
+ 4640
+
+
+
+
+ 4647
+
+
+
+
+ 4656
+
+
+ Cheats List Array Controller
+
+
+ 4660
+
+
+ YES
+
+
+
+
+
+ 4661
+
+
+ YES
+
+
+
+
+
+ 4662
+
+
+
+
+ 4663
+
+
+
+
+ 4664
+
+
+ YES
+
+
+
+
+
+ 4665
+
+
+
+
+ 4673
+
+
+ YES
+
+
+
+
+ Code Breaker Cheat View
+
+
+ 4693
+
+
+ YES
+
+
+
+
+
+ 4694
+
+
+
+
+ 4697
+
+
+
+
+ 4711
+
+
+ Cheat Selected Item Controller
+
+
+ 4715
+
+
+
+
+ 4731
+
+
+ Cheat Window Controller
+
+
+ 4745
+
+
+ YES
+
+
+
+
+
+ 4746
+
+
+
+
+ 4607
+
+
+ YES
+
+
+
+
+
+ 4778
+
+
+
+
+ 4792
+
+
+ YES
+
+
+
+
+
+
+
+
+ 4795
+
+
+
+
+ 4796
+
+
+
+
+ 4797
+
+
+ YES
+
+
+
+
+
+
+ 4798
+
+
+
+
+ 4799
+
+
+ YES
+
+
+
+
+
+ 4800
+
+
+ YES
+
+
+
+
+
+ 4801
+
+
+
+
+ 4802
+
+
+
+
+ 4809
+
+
+ YES
+
+
+
+
+
+ 4810
+
+
+
+
+ 4811
+
+
+ YES
+
+
+
+
+
+ 4812
+
+
+
+
+ 4814
+
+
+ YES
+
+
+
+
+
+ 4815
+
+
+
+
+ 4817
+
+
+ YES
+
+
+
+
+
+ 4818
+
+
+
+
+ 4822
+
+
+ YES
+
+
+
+
+
+ 4823
+
+
+
+
+ 4850
+
+
+ YES
+
+
+
+
+
+
+ Exact Value Search View
+
+
+ 4851
+
+
+ YES
+
+
+
+
+
+
+
+
+ Comparative Search Continue View
+
+
+ 4858
+
+
+ YES
+
+
+
+
+
+ 4859
+
+
+ YES
+
+
+
+
+
+ 4860
+
+
+ YES
+
+
+
+
+
+ 4861
+
+
+ YES
+
+
+
+
+
+ 4862
+
+
+ YES
+
+
+
+
+
+ 4863
+
+
+ YES
+
+
+
+
+
+ 4864
+
+
+
+
+ 4865
+
+
+
+
+ 4866
+
+
+
+
+ 4867
+
+
+
+
+ 4868
+
+
+
+
+ 4869
+
+
+
+
+ 4871
+
+
+ YES
+
+
+
+
+
+ 4872
+
+
+ YES
+
+
+
+
+
+ 4873
+
+
+
+
+ 4874
+
+
+
+
+ 4876
+
+
+ YES
+
+
+
+
+
+ 4877
+
+
+ YES
+
+
+
+
+
+ 4878
+
+
+
+
+ 4879
+
+
+ YES
+
+
+
+
+ 4880
+
+
+ YES
+
+
+
+
+
+ Comparative Search Start View
+
+
+ 4887
+
+
+ YES
+
+
+
+
+
+ 4888
+
+
+ YES
+
+
+
+
+
+ 4889
+
+
+ YES
+
+
+
+
+
+ 4890
+
+
+
+
+ 4891
+
+
+
+
+ 4892
+
+
+
+
+ 4899
+
+
+
+
+ 4900
+
+
+ YES
+
+
+
+
+
+ 4901
+
+
+ YES
+
+
+
+
+
+ 4902
+
+
+ YES
+
+
+
+
+
+
+ 4903
+
+
+
+
+ 4904
+
+
+
+
+ 4906
+
+
+ YES
+
+
+
+
+
+ 4907
+
+
+
+
+ 4908
+
+
+ YES
+
+
+
+
+
+ 4909
+
+
+
+
+ 4910
+
+
+ YES
+
+
+
+
+
+ 4911
+
+
+ YES
+
+
+
+
+
+ 4912
+
+
+ YES
+
+
+
+
+
+
+ 4913
+
+
+
+
+ 4914
+
+
+
+
+ 4916
+
+
+ Cheat Search List Array Controller
+
+
+ 4947
+
+
+
+
+ 5003
+
+
+ YES
+
+
+
+
+
+
+
+ 5004
+
+
+ YES
+
+
+
+
+
+ 5005
+
+
+ YES
+
+
+
+
+
+ 5006
+
+
+ YES
+
+
+
+
+
+ 5007
+
+
+
+
+ 5008
+
+
+
+
+ 5009
+
+
+
+
+ 5066
+
+
+ YES
+
+
+
+
+
+ 5067
+
+
+
+
+ 5068
+
+
+ YES
+
+
+
+
+
+ 5069
+
+
+
+
+ 5080
+
+
+ YES
+
+
+
+
+
+ 5081
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 5082
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5083
+
+
+
+
+ 5084
+
+
+
+
+ 5085
+
+
+ YES
+
+
+
+
+
+
+ 5086
+
+
+
+
+ 5087
+
+
+ YES
+
+
+
+
+
+ 5088
+
+
+ YES
+
+
+
+
+
+ 5089
+
+
+
+
+ 5097
+
+
+
+
+ 5098
+
+
+ YES
+
+
+
+
+
+ 5099
+
+
+
+
+ 5100
+
+
+ YES
+
+
+
+
+
+ 5101
+
+
+
+
+ 5102
+
+
+ YES
+
+
+
+
+
+ 5103
+
+
+
+
+ 5104
+
+
+ YES
+
+
+
+
+
+ 5105
+
+
+
+
+ 5106
+
+
+ YES
+
+
+
+
+
+ 5107
+
+
+
+
+ 5111
+
+
+ YES
+
+
+
+
+
+ 5112
+
+
+
+
+ 5115
+
+
+ Cheat Database Array Controller
+
+
+ 5127
+
+
+ YES
+
+
+
+
+
+ 5128
+
+
+
+
+ 5133
+
+
+ YES
+
+
+
+
+
+ 5134
+
+
+
+
+ 5135
+
+
+ YES
+
+
+
+
+
+ 5136
+
+
+
+
+ 5140
+
+
+ YES
+
+
+
+
+
+ 5141
+
+
+
+
+ 5168
+
+
+ YES
+
+
+
+
+
+ 5169
+
+
+
+
+ 5171
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5172
+
+
+ YES
+
+
+
+
+
+ 5173
+
+
+ YES
+
+
+
+
+
+ 5174
+
+
+ YES
+
+
+
+
+
+ 5175
+
+
+ YES
+
+
+
+
+
+ 5176
+
+
+
+
+ 5177
+
+
+
+
+ 5178
+
+
+
+
+ 5179
+
+
+
+
+ 5193
+
+
+
+
+ 24
+
+
+ YES
+
+
+
+
+
+
+
+
+ 23
+
+
+
+
+ 239
+
+
+
+
+ 5
+
+
+
+
+ 92
+
+
+
+
+ 5329
+
+
+
+
+ 490
+
+
+ YES
+
+
+
+
+
+ 5419
+
+
+
+
+ 5420
+
+
+
+
+ 5421
+
+
+
+
+ 5450
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 2287
+
+
+ YES
+
+
+
+
+
+ 2288
+
+
+
+
+ 2289
+
+
+ YES
+
+
+
+
+
+ 2290
+
+
+
+
+ 1507
+
+
+ YES
+
+
+
+
+
+ 1508
+
+
+ YES
+
+
+
+
+
+ 1509
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1532
+
+
+
+
+ 1512
+
+
+
+
+ 1511
+
+
+
+
+ 1510
+
+
+
+
+ 1577
+
+
+ YES
+
+
+
+
+
+ 1578
+
+
+ YES
+
+
+
+
+
+ 1579
+
+
+
+
+ 2291
+
+
+ YES
+
+
+
+
+
+ 2299
+
+
+
+
+ 2292
+
+
+ YES
+
+
+
+
+
+ 2293
+
+
+ YES
+
+
+
+
+
+ 2294
+
+
+ YES
+
+
+
+
+
+
+
+ 5427
+
+
+
+
+ 2298
+
+
+
+
+ 2297
+
+
+
+
+ 3994
+
+
+ YES
+
+
+
+
+
+ 3995
+
+
+ YES
+
+
+
+
+
+ 3996
+
+
+ YES
+
+
+
+
+
+
+ 3997
+
+
+
+
+ 3998
+
+
+
+
+ 3992
+
+
+ YES
+
+
+
+
+
+ 3993
+
+
+
+
+ 1525
+
+
+ YES
+
+
+
+
+
+ 1526
+
+
+ YES
+
+
+
+
+
+ 1527
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 1531
+
+
+
+
+ 1530
+
+
+
+
+ 1529
+
+
+
+
+ 1528
+
+
+
+
+ 1580
+
+
+
+
+ 1581
+
+
+
+
+ 5648
+
+
+
+
+ 5649
+
+
+
+
+ 5651
+
+
+ YES
+
+
+
+
+
+ 5652
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5653
+
+
+ YES
+
+
+
+
+
+ 5654
+
+
+ YES
+
+
+
+
+
+
+
+
+ 5658
+
+
+ YES
+
+
+
+
+
+ 5659
+
+
+ YES
+
+
+
+
+
+ 5660
+
+
+
+
+ 5661
+
+
+
+
+ 5665
+
+
+ YES
+
+
+
+
+
+ 5666
+
+
+ YES
+
+
+
+
+
+ 5667
+
+
+ YES
+
+
+
+
+
+ 5668
+
+
+ YES
+
+
+
+
+
+ 5669
+
+
+ YES
+
+
+
+
+
+ 5670
+
+
+ YES
+
+
+
+
+
+
+
+ 5671
+
+
+
+
+ 5672
+
+
+
+
+ 5673
+
+
+
+
+ 5674
+
+
+ YES
+
+
+
+
+
+ 5675
+
+
+ YES
+
+
+
+
+
+
+
+ 5676
+
+
+
+
+ 5677
+
+
+
+
+ 5678
+
+
+
+
+ 5679
+
+
+ YES
+
+
+
+
+
+ 5680
+
+
+ YES
+
+
+
+
+
+
+
+ 5681
+
+
+
+
+ 5682
+
+
+
+
+ 5683
+
+
+
+
+ 5684
+
+
+ YES
+
+
+
+
+
+ 5685
+
+
+ YES
+
+
+
+
+
+
+
+ 5686
+
+
+
+
+ 5687
+
+
+
+
+ 5688
+
+
+
+
+ 5689
+
+
+
+
+ 5702
+
+
+
+
+ 5713
+
+
+ About Window Controller
+
+
+ 5933
+
+
+ YES
+
+
+
+
+ Export ROM Save Panel Accessory
+
+
+ 5934
+
+
+ YES
+
+
+
+
+
+ 5935
+
+
+ YES
+
+
+
+
+
+ 5936
+
+
+
+
+ 5937
+
+
+ YES
+
+
+
+
+
+ 5938
+
+
+ YES
+
+
+
+
+
+
+
+ 5939
+
+
+
+
+ 5942
+
+
+
+
+ 5963
+
+
+
+
+ 6131
+
+
+ YES
+
+
+
+
+
+
+
+
+ 6132
+
+
+ YES
+
+
+
+
+
+
+
+ 6133
+
+
+
+
+ 6134
+
+
+
+
+ 6135
+
+
+
+
+ 6168
+
+
+ YES
+
+
+
+
+
+ 6169
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 6170
+
+
+
+
+ 6171
+
+
+ YES
+
+
+
+
+
+ 6172
+
+
+ YES
+
+
+
+
+
+
+ 6173
+
+
+
+
+ 6174
+
+
+
+
+ 6177
+
+
+
+
+ 6180
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 6234
+
+
+
+
+ 3777
+
+
+ YES
+
+
+
+
+
+ 3778
+
+
+
+
+ 6295
+
+
+ YES
+
+
+
+
+
+ 6296
+
+
+ YES
+
+
+
+
+ 6352
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Support Request Form View
+
+
+ 6353
+
+
+ YES
+
+
+
+
+
+ 6354
+
+
+ YES
+
+
+
+
+
+ 6355
+
+
+ YES
+
+
+
+
+
+ 6356
+
+
+ YES
+
+
+
+
+
+ 6357
+
+
+ YES
+
+
+
+
+
+ 6358
+
+
+ YES
+
+
+
+
+
+ 6359
+
+
+ YES
+
+
+
+
+
+ 6360
+
+
+ YES
+
+
+
+
+
+ 6361
+
+
+
+
+ 6362
+
+
+ YES
+
+
+
+
+
+ 6363
+
+
+ YES
+
+
+
+
+
+ 6364
+
+
+
+
+ 6365
+
+
+ YES
+
+
+
+
+
+ 6366
+
+
+ YES
+
+
+
+
+
+ 6368
+
+
+
+
+ 6369
+
+
+ YES
+
+
+
+
+
+ 6374
+
+
+
+
+ 6376
+
+
+
+
+ 6377
+
+
+
+
+ 6378
+
+
+
+
+ 6379
+
+
+
+
+ 6380
+
+
+
+
+ 6381
+
+
+
+
+ 6382
+
+
+
+
+ 6383
+
+
+
+
+ 6384
+
+
+
+
+ 6385
+
+
+
+
+ 6386
+
+
+
+
+ 6387
+
+
+
+
+ 6388
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bug Report Form View
+
+
+ 6389
+
+
+ YES
+
+
+
+
+
+ 6390
+
+
+ YES
+
+
+
+
+
+ 6391
+
+
+ YES
+
+
+
+
+
+ 6392
+
+
+ YES
+
+
+
+
+
+ 6393
+
+
+ YES
+
+
+
+
+
+ 6394
+
+
+ YES
+
+
+
+
+
+ 6395
+
+
+ YES
+
+
+
+
+
+ 6396
+
+
+ YES
+
+
+
+
+
+ 6397
+
+
+
+
+ 6398
+
+
+ YES
+
+
+
+
+
+ 6399
+
+
+ YES
+
+
+
+
+
+ 6400
+
+
+
+
+ 6401
+
+
+ YES
+
+
+
+
+
+ 6402
+
+
+ YES
+
+
+
+
+
+ 6405
+
+
+ YES
+
+
+
+
+
+ 6406
+
+
+ YES
+
+
+
+
+
+ 6407
+
+
+
+
+ 6408
+
+
+ YES
+
+
+
+
+
+ 6413
+
+
+
+
+ 6414
+
+
+
+
+ 6415
+
+
+
+
+ 6418
+
+
+
+
+ 6419
+
+
+
+
+ 6420
+
+
+
+
+ 6421
+
+
+
+
+ 6422
+
+
+
+
+ 6423
+
+
+
+
+ 6424
+
+
+
+
+ 6425
+
+
+
+
+ 6426
+
+
+
+
+ 6427
+
+
+
+
+ 6428
+
+
+
+
+ 6429
+
+
+
+
+ 6430
+
+
+ YES
+
+
+
+
+
+
+
+ Troubleshooting Info View
+
+
+ 6431
+
+
+ YES
+
+
+
+
+
+
+
+ 6432
+
+
+ YES
+
+
+
+
+
+ 6433
+
+
+ YES
+
+
+
+
+
+ 6434
+
+
+
+
+ 6435
+
+
+
+
+ 6436
+
+
+
+
+ 6437
+
+
+
+
+ 6438
+
+
+
+
+ 6440
+
+
+
+
+ 6441
+
+
+ Troubleshooting Window Controller
+
+
+ 6484
+
+
+ YES
+
+
+
+
+
+ 6485
+
+
+
+
+ 6486
+
+
+ YES
+
+
+
+
+
+
+
+ 6487
+
+
+
+
+ 6488
+
+
+
+
+ 6489
+
+
+
+
+ 6491
+
+
+ YES
+
+
+
+
+
+
+
+ 6492
+
+
+
+
+ 6493
+
+
+
+
+ 6494
+
+
+
+
+ 6496
+
+
+ YES
+
+
+
+
+
+
+
+ 6497
+
+
+
+
+ 6498
+
+
+
+
+ 6499
+
+
+
+
+ 6611
+
+
+ YES
+
+
+
+
+
+ 6612
+
+
+
+
+ 6617
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 6630
+
+
+ YES
+
+
+
+
+
+ 6631
+
+
+
+
+ 6651
+
+
+
+
+ 6652
+
+
+ Emulation Control Controller
+
+
+ 6931
+
+
+
+
+ 6998
+
+
+
+
+ 6999
+
+
+
+
+ 7002
+
+
+
+
+ 7014
+
+
+ YES
+
+
+
+
+
+
+
+ Input Preferences View
+
+
+ 7168
+
+
+ YES
+
+
+
+
+
+ 7169
+
+
+
+
+ 7171
+
+
+ YES
+
+
+
+
+
+ 7172
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 7173
+
+
+ YES
+
+
+
+
+
+ 7174
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7175
+
+
+ YES
+
+
+
+
+
+ 7176
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7179
+
+
+ YES
+
+
+
+
+
+ 7180
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7182
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 7183
+
+
+ YES
+
+
+
+
+
+ 7184
+
+
+ YES
+
+
+
+
+
+ 7185
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7186
+
+
+
+
+ 7187
+
+
+
+
+ 7188
+
+
+
+
+ 7189
+
+
+
+
+ 7191
+
+
+
+
+ 7192
+
+
+
+
+ 7210
+
+
+ YES
+
+
+
+
+
+ 7211
+
+
+ YES
+
+
+
+
+
+ 7212
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7213
+
+
+
+
+ 7214
+
+
+
+
+ 7215
+
+
+
+
+ 7216
+
+
+ YES
+
+
+
+
+
+ 7217
+
+
+
+
+ 7218
+
+
+
+
+ 7219
+
+
+
+
+ 7220
+
+
+
+
+ 7221
+
+
+
+
+ 7222
+
+
+
+
+ 7223
+
+
+
+
+ 7224
+
+
+
+
+ 7225
+
+
+ YES
+
+
+
+
+
+ 7226
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7227
+
+
+ YES
+
+
+
+
+
+ 7228
+
+
+ YES
+
+
+
+
+
+ 7229
+
+
+ YES
+
+
+
+
+
+ 7230
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7231
+
+
+
+
+ 7232
+
+
+
+
+ 7233
+
+
+
+
+ 7234
+
+
+
+
+ 7235
+
+
+
+
+ 7236
+
+
+
+
+ 7237
+
+
+
+
+ 7238
+
+
+
+
+ 7239
+
+
+
+
+ 7240
+
+
+
+
+ 7241
+
+
+
+
+ 7266
+
+
+ YES
+
+
+
+
+
+ 7267
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7268
+
+
+
+
+ 7269
+
+
+
+
+ 7270
+
+
+
+
+ 7271
+
+
+
+
+ 7272
+
+
+
+
+ 7273
+
+
+
+
+ 7274
+
+
+
+
+ 7275
+
+
+
+
+ 7276
+
+
+
+
+ 7277
+
+
+
+
+ 7278
+
+
+
+
+ 7279
+
+
+
+
+ 7280
+
+
+
+
+ 7293
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7285
+
+
+ YES
+
+
+
+
+
+ 7286
+
+
+
+
+ 7287
+
+
+ YES
+
+
+
+
+
+ 7288
+
+
+ YES
+
+
+
+
+
+ 7289
+
+
+ YES
+
+
+
+
+
+ 7292
+
+
+
+
+ 7290
+
+
+ YES
+
+
+
+
+
+ 7291
+
+
+ YES
+
+
+
+
+
+ 7294
+
+
+
+
+ 7295
+
+
+
+
+ 7301
+
+
+ YES
+
+
+
+
+
+ 7302
+
+
+
+
+ 7305
+
+
+ YES
+
+
+
+
+
+ 7308
+
+
+
+
+ 7309
+
+
+ YES
+
+
+
+
+
+ 7312
+
+
+
+
+ 7313
+
+
+ YES
+
+
+
+
+
+ 7316
+
+
+
+
+ 7317
+
+
+ YES
+
+
+
+
+
+ 7320
+
+
+
+
+ 7353
+
+
+ Input Settings Controller
+
+
+ 7354
+
+
+ YES
+
+
+
+
+
+ 7355
+
+
+
+
+ 7358
+
+
+ YES
+
+
+
+
+
+ 7359
+
+
+
+
+ 7392
+
+
+ YES
+
+
+
+
+
+ 7393
+
+
+
+
+ 7395
+
+
+ YES
+
+
+
+
+
+ 7396
+
+
+
+
+ 7398
+
+
+ YES
+
+
+
+
+
+ 7399
+
+
+
+
+ 7401
+
+
+ YES
+
+
+
+
+
+ 7402
+
+
+
+
+ 7404
+
+
+ YES
+
+
+
+
+
+ 7405
+
+
+
+
+ 7433
+
+
+ YES
+
+
+
+
+
+ 7434
+
+
+
+
+ 7436
+
+
+ YES
+
+
+
+
+
+ 7437
+
+
+
+
+ 7439
+
+
+ YES
+
+
+
+
+
+ 7440
+
+
+
+
+ 7442
+
+
+ YES
+
+
+
+
+
+ 7443
+
+
+
+
+ 7445
+
+
+ YES
+
+
+
+
+
+ 7446
+
+
+
+
+ 7449
+
+
+ YES
+
+
+
+
+
+ 7450
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7451
+
+
+ YES
+
+
+
+
+
+ 7452
+
+
+
+
+ 7454
+
+
+ YES
+
+
+
+
+
+ 7455
+
+
+ YES
+
+
+
+
+
+ 7456
+
+
+ YES
+
+
+
+
+
+ 7457
+
+
+ YES
+
+
+
+
+
+ 7458
+
+
+ YES
+
+
+
+
+
+ 7459
+
+
+ YES
+
+
+
+
+
+ 7460
+
+
+ YES
+
+
+
+
+
+ 7462
+
+
+ YES
+
+
+
+
+
+ 7463
+
+
+ YES
+
+
+
+
+
+ 7464
+
+
+ YES
+
+
+
+
+
+ 7465
+
+
+
+
+ 7466
+
+
+
+
+ 7468
+
+
+
+
+ 7469
+
+
+
+
+ 7470
+
+
+
+
+ 7471
+
+
+
+
+ 7472
+
+
+
+
+ 7473
+
+
+
+
+ 7474
+
+
+
+
+ 7486
+
+
+ YES
+
+
+
+
+
+ 7487
+
+
+ YES
+
+
+
+
+
+ 7488
+
+
+
+
+ 7489
+
+
+
+
+ 7461
+
+
+ YES
+
+
+
+
+
+ 7467
+
+
+
+
+ 7515
+
+
+ YES
+
+
+
+
+
+ 7516
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 7517
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7521
+
+
+
+
+ 7520
+
+
+
+
+ 7519
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7518
+
+
+
+
+ 7526
+
+
+ YES
+
+
+
+
+
+ 7525
+
+
+ YES
+
+
+
+
+
+ 7522
+
+
+ YES
+
+
+
+
+
+ 7531
+
+
+
+
+ 7528
+
+
+
+
+ 7537
+
+
+ YES
+
+
+
+
+
+ 7540
+
+
+
+
+ 7541
+
+
+ YES
+
+
+
+
+
+ 7542
+
+
+
+
+ 7543
+
+
+ YES
+
+
+
+
+
+ 7544
+
+
+
+
+ 7545
+
+
+ YES
+
+
+
+
+
+ 7546
+
+
+
+
+ 7551
+
+
+ YES
+
+
+
+
+
+ 7552
+
+
+
+
+ 7553
+
+
+ YES
+
+
+
+
+
+ 7554
+
+
+
+
+ 7555
+
+
+ YES
+
+
+
+
+
+ 7556
+
+
+
+
+ 7583
+
+
+ YES
+
+
+
+
+
+ 7584
+
+
+
+
+ 7128
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7132
+
+
+
+
+ 7131
+
+
+
+
+ 7130
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 7129
+
+
+
+
+ 7137
+
+
+ YES
+
+
+
+
+
+ 7136
+
+
+ YES
+
+
+
+
+
+ 7135
+
+
+ YES
+
+
+
+
+
+ 7134
+
+
+ YES
+
+
+
+
+
+ 7133
+
+
+ YES
+
+
+
+
+
+ 7142
+
+
+
+
+ 7141
+
+
+
+
+ 7140
+
+
+
+
+ 7139
+
+
+
+
+ 7138
+
+
+
+
+ 7594
+
+
+ YES
+
+
+
+
+
+ 7595
+
+
+ YES
+
+
+
+
+
+ 7596
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 7597
+
+
+
+
+ 7598
+
+
+
+
+ 7599
+
+
+
+
+ 7601
+
+
+
+
+ 7602
+
+
+
+
+ 7603
+
+
+
+
+ 7600
+
+
+
+
+ 7604
+
+
+
+
+ 7605
+
+
+ YES
+
+
+
+
+
+ 7606
+
+
+ YES
+
+
+
+
+
+ 7607
+
+
+ YES
+
+
+
+
+
+
+ 7610
+
+
+
+
+ 7612
+
+
+
+
+ 7624
+
+
+ YES
+
+
+
+
+
+ 7625
+
+
+
+
+ 7666
+
+
+ Input Profile Controller
+
+
+ 7707
+
+
+ YES
+
+
+
+
+
+ 7708
+
+
+ YES
+
+
+
+
+
+
+
+ 7715
+
+
+ YES
+
+
+
+
+
+ 7716
+
+
+
+
+ 7725
+
+
+ YES
+
+
+
+
+
+ 7726
+
+
+
+
+ 7729
+
+
+ YES
+
+
+
+
+
+ 7730
+
+
+
+
+ 7740
+
+
+
+
+ 7190
+
+
+
+
+ 7759
+
+
+ YES
+
+
+
+
+
+ 7760
+
+
+
+
+ 7761
+
+
+ YES
+
+
+
+
+
+ 7762
+
+
+ YES
+
+
+
+
+
+ 7765
+
+
+
+
+ 7766
+
+
+ YES
+
+
+
+
+
+ 7767
+
+
+
+
+ 7771
+
+
+ YES
+
+
+
+
+
+ 7772
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 7773
+
+
+
+
+ 7774
+
+
+
+
+ 7775
+
+
+
+
+ 7776
+
+
+
+
+ 7777
+
+
+
+
+ 7778
+
+
+
+
+ 7779
+
+
+
+
+ 7780
+
+
+ YES
+
+
+
+
+
+ 7781
+
+
+
+
+ 7792
+
+
+ YES
+
+
+
+
+
+ 7793
+
+
+ YES
+
+
+
+
+
+ 7794
+
+
+
+
+ 7802
+
+
+ YES
+
+
+
+
+
+ 7803
+
+
+
+
+ 7804
+
+
+ YES
+
+
+
+
+
+ 7805
+
+
+
+
+ 7806
+
+
+ YES
+
+
+
+
+
+ 7807
+
+
+
+
+ 7808
+
+
+ YES
+
+
+
+
+
+ 7809
+
+
+
+
+ 7810
+
+
+ YES
+
+
+
+
+
+ 7811
+
+
+
+
+ 7812
+
+
+ YES
+
+
+
+
+
+ 7813
+
+
+
+
+ 7817
+
+
+ YES
+
+
+
+
+
+ 7818
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 7820
+
+
+ YES
+
+
+
+
+
+ 7821
+
+
+ YES
+
+
+
+
+
+ 7822
+
+
+ YES
+
+
+
+
+
+ 7823
+
+
+ YES
+
+
+
+
+
+ 7824
+
+
+ YES
+
+
+
+
+
+ 7825
+
+
+ YES
+
+
+
+
+
+ 7826
+
+
+
+
+ 7827
+
+
+
+
+ 7828
+
+
+
+
+ 7829
+
+
+
+
+ 7830
+
+
+
+
+ 7831
+
+
+
+
+ 7836
+
+
+ YES
+
+
+
+
+
+ 7837
+
+
+
+
+ 7838
+
+
+ YES
+
+
+
+
+
+ 7839
+
+
+ YES
+
+
+
+
+
+ 7840
+
+
+
+
+ 7843
+
+
+ YES
+
+
+
+
+
+ 7844
+
+
+
+
+ 7845
+
+
+ YES
+
+
+
+
+
+ 7846
+
+
+
+
+ 7847
+
+
+ YES
+
+
+
+
+
+ 7848
+
+
+
+
+ 7855
+
+
+ YES
+
+
+
+
+
+ 7856
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7886
+
+
+
+
+ 7899
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 125
+
+
+ YES
+
+
+
+
+
+ 126
+
+
+
+
+ 8009
+
+
+ YES
+
+
+
+
+
+
+
+
+ 7971
+
+
+ YES
+
+
+
+
+
+ 7974
+
+
+
+
+ 7972
+
+
+ YES
+
+
+
+
+
+ 7973
+
+
+
+
+ 7978
+
+
+
+
+ 7987
+
+
+ YES
+
+
+
+
+
+ 7988
+
+
+ YES
+
+
+
+
+
+ 7989
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8003
+
+
+
+
+ 7996
+
+
+
+
+ 7995
+
+
+ YES
+
+
+
+
+
+ 7994
+
+
+
+
+ 7993
+
+
+
+
+ 7997
+
+
+ YES
+
+
+
+
+
+ 7998
+
+
+
+
+ 8012
+
+
+ YES
+
+
+
+
+
+ 8013
+
+
+ YES
+
+
+
+
+
+ 8014
+
+
+
+
+ 8015
+
+
+
+
+ 8016
+
+
+
+
+ 8021
+
+
+ YES
+
+
+
+
+
+ 8022
+
+
+ YES
+
+
+
+
+
+ 8023
+
+
+
+
+ 8024
+
+
+
+
+ 8025
+
+
+
+
+ 8030
+
+
+ YES
+
+
+
+
+
+ 8031
+
+
+ YES
+
+
+
+
+
+ 8032
+
+
+
+
+ 8033
+
+
+
+
+ 8034
+
+
+
+
+ 8043
+
+
+ YES
+
+
+
+
+
+ 8044
+
+
+
+
+ 8045
+
+
+ YES
+
+
+
+
+
+ 8046
+
+
+ YES
+
+
+
+
+
+ 8047
+
+
+
+
+ 8048
+
+
+ YES
+
+
+
+
+
+ 8049
+
+
+
+
+ 8084
+
+
+
+
+ 2604
+
+
+
+
+ 8134
+
+
+ YES
+
+
+
+
+
+ 8135
+
+
+ YES
+
+
+
+
+
+
+ 8160
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 8136
+
+
+ YES
+
+
+
+
+
+ 8137
+
+
+
+
+ 8138
+
+
+ YES
+
+
+
+
+
+ 8139
+
+
+
+
+ 8140
+
+
+ YES
+
+
+
+
+
+ 8141
+
+
+
+
+ 8142
+
+
+ YES
+
+
+
+
+
+ 8143
+
+
+
+
+ 8144
+
+
+ YES
+
+
+
+
+
+ 8145
+
+
+
+
+ 8146
+
+
+ YES
+
+
+
+
+
+ 8147
+
+
+
+
+ 8161
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 8148
+
+
+ YES
+
+
+
+
+
+ 8149
+
+
+
+
+ 8150
+
+
+ YES
+
+
+
+
+
+ 8151
+
+
+
+
+ 8152
+
+
+ YES
+
+
+
+
+
+ 8153
+
+
+
+
+ 8154
+
+
+ YES
+
+
+
+
+
+ 8155
+
+
+
+
+ 8156
+
+
+ YES
+
+
+
+
+
+ 8157
+
+
+
+
+ 8158
+
+
+ YES
+
+
+
+
+
+ 8159
+
+
+
+
+ 8162
+
+
+
+
+ 8164
+
+
+
+
+ 8181
+
+
+ YES
+
+
+
+
+
+
+
+ 8182
+
+
+ YES
+
+
+
+
+
+ 8183
+
+
+ YES
+
+
+
+
+
+ 8184
+
+
+ YES
+
+
+
+
+
+
+ 8185
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 2342
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2359
+
+
+ YES
+
+
+
+
+
+ 2355
+
+
+ YES
+
+
+
+
+
+ 2365
+
+
+ YES
+
+
+
+
+
+ 2363
+
+
+ YES
+
+
+
+
+
+ 2358
+
+
+ YES
+
+
+
+
+
+ 2357
+
+
+ YES
+
+
+
+
+
+ 2349
+
+
+ YES
+
+
+
+
+
+ 2353
+
+
+ YES
+
+
+
+
+
+ 2347
+
+
+ YES
+
+
+
+
+
+ 2348
+
+
+
+
+ 2354
+
+
+
+
+ 2350
+
+
+
+
+ 2362
+
+
+
+
+ 2361
+
+
+
+
+ 2364
+
+
+
+
+ 2366
+
+
+
+
+ 2356
+
+
+
+
+ 2360
+
+
+
+
+ 2343
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 2374
+
+
+ YES
+
+
+
+
+
+ 4275
+
+
+ YES
+
+
+
+
+
+ 2565
+
+
+ YES
+
+
+
+
+
+ 2373
+
+
+ YES
+
+
+
+
+
+ 2372
+
+
+ YES
+
+
+
+
+
+ 2371
+
+
+ YES
+
+
+
+
+
+ 2378
+
+
+
+
+ 2377
+
+
+
+
+ 2376
+
+
+
+
+ 2566
+
+
+
+
+ 4276
+
+
+
+
+ 2375
+
+
+
+
+ 2341
+
+
+ YES
+
+
+
+
+
+
+
+ 6627
+
+
+ YES
+
+
+
+
+
+ 2345
+
+
+ YES
+
+
+
+
+
+ 2346
+
+
+
+
+ 6628
+
+
+
+
+ 6126
+
+
+ YES
+
+
+
+
+
+
+
+
+ 6127
+
+
+ YES
+
+
+
+
+
+
+
+ 8060
+
+
+ YES
+
+
+
+
+
+ 8058
+
+
+ YES
+
+
+
+
+
+ 8056
+
+
+ YES
+
+
+
+
+
+ 8057
+
+
+
+
+ 8059
+
+
+ YES
+
+
+
+
+
+ 8066
+
+
+
+
+ 8061
+
+
+
+
+ 6130
+
+
+
+
+ 6129
+
+
+
+
+ 6128
+
+
+
+
+ 5186
+
+
+ YES
+
+
+
+
+
+ 5188
+
+
+ YES
+
+
+
+
+
+ 5189
+
+
+
+
+ 8186
+
+
+
+
+ 8245
+
+
+ YES
+
+
+
+
+
+ 8246
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8253
+
+
+
+
+ 8254
+
+
+
+
+ 8255
+
+
+
+
+ 8256
+
+
+
+
+ 8257
+
+
+
+
+ 8258
+
+
+
+
+ 8259
+
+
+
+
+ 8260
+
+
+
+
+ 8261
+
+
+
+
+ 8262
+
+
+
+
+ 8263
+
+
+
+
+ 8265
+
+
+
+
+ 8268
+
+
+
+
+ 8269
+
+
+
+
+ 8295
+
+
+
+
+ 8302
+
+
+ YES
+
+
+
+
+
+ 8303
+
+
+
+
+ 8307
+
+
+
+
+ 8308
+
+
+ YES
+
+
+
+
+
+ 8309
+
+
+
+
+ 8310
+
+
+
+
+ 8316
+
+
+
+
+ 8322
+
+
+ YES
+
+
+
+
+
+ 8323
+
+
+
+
+ 8331
+
+
+ YES
+
+
+
+
+
+ 8332
+
+
+ YES
+
+
+
+
+
+
+
+
+ 8333
+
+
+ YES
+
+
+
+
+
+
+
+
+ 8334
+
+
+
+
+ 8335
+
+
+
+
+ 8336
+
+
+ YES
+
+
+
+
+
+ 8338
+
+
+ YES
+
+
+
+
+
+ 8341
+
+
+
+
+ 8343
+
+
+ YES
+
+
+
+
+
+ 8344
+
+
+
+
+ 8351
+
+
+
+
+ 8352
+
+
+
+
+ 8354
+
+
+ SLOT-2 Device Array Controller
+
+
+ 8345
+
+
+ YES
+
+
+
+
+
+ 8346
+
+
+
+
+ 8356
+
+
+ SLOT-2 Window Delegate
+
+
+ 8365
+
+
+ YES
+
+
+
+
+
+ 8363
+
+
+ YES
+
+
+
+
+
+ 8364
+
+
+
+
+ 8366
+
+
+ YES
+
+
+
+
+
+ SLOT-2 None View
+
+
+ 8367
+
+
+ YES
+
+
+
+
+
+ 8368
+
+
+
+
+ 8402
+
+
+ YES
+
+
+
+
+
+
+ SLOT-2 Rumble Pak View
+
+
+ 8405
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ SLOT-2 GBA Cartridge View
+
+
+ 8369
+
+
+ YES
+
+
+
+
+ SLOT-2 MPCF Flash Card View
+
+
+ 8377
+
+
+ YES
+
+
+
+
+
+ 8387
+
+
+ YES
+
+
+
+
+
+ 8388
+
+
+
+
+ 8378
+
+
+ YES
+
+
+
+
+
+ 8379
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 8380
+
+
+
+
+ 8381
+
+
+
+
+ 8382
+
+
+
+
+ 8383
+
+
+
+
+ 8384
+
+
+
+
+ 8385
+
+
+
+
+ 8386
+
+
+
+
+ 8408
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ SLOT-2 Auto View
+
+
+ 8409
+
+
+ YES
+
+
+
+
+
+ 8410
+
+
+
+
+ 8411
+
+
+ YES
+
+
+
+
+
+ 8412
+
+
+
+
+ 8413
+
+
+ YES
+
+
+
+
+
+ 8414
+
+
+
+
+ 8415
+
+
+ YES
+
+
+
+
+
+ 8416
+
+
+
+
+ 8427
+
+
+
+
+ 8428
+
+
+ YES
+
+
+
+
+
+ SLOT-2 Guitar Grip View
+
+
+ 8445
+
+
+ YES
+
+
+
+
+ SLOT-2 Memory Expansion Pack View
+
+
+ 8446
+
+
+ YES
+
+
+
+
+
+ 8447
+
+
+
+
+ 8448
+
+
+ YES
+
+
+
+
+
+ SLOT-2 Piano View
+
+
+ 8451
+
+
+ YES
+
+
+
+
+
+ SLOT-2 Paddle Controller View
+
+
+ 8454
+
+
+ YES
+
+
+
+
+ SLOT-2 PassME View
+
+
+ 8455
+
+
+ YES
+
+
+
+
+
+ 8456
+
+
+
+
+ 8457
+
+
+ YES
+
+
+
+
+
+ 8458
+
+
+
+
+ 8477
+
+
+ YES
+
+
+
+
+
+ 8478
+
+
+
+
+ 8499
+
+
+ YES
+
+
+
+
+
+ 8500
+
+
+
+
+ 8501
+
+
+ YES
+
+
+
+
+
+ 8502
+
+
+
+
+ 8512
+
+
+ YES
+
+
+
+
+
+
+
+
+ 8513
+
+
+
+
+ 8514
+
+
+
+
+ 8515
+
+
+ YES
+
+
+
+
+
+
+ 8517
+
+
+ YES
+
+
+
+
+
+ 8518
+
+
+ YES
+
+
+
+
+
+ 8519
+
+
+
+
+ 8523
+
+
+
+
+ 8524
+
+
+
+
+ 8525
+
+
+ YES
+
+
+
+
+
+ 8526
+
+
+
+
+ 8527
+
+
+ Input Device List Array Controller
+
+
+ 8535
+
+
+ SLOT-2 Window Controller
+
+
+ 8552
+
+
+ YES
+
+
+
+ SLOT-2 Unsupported View
+
+
+ 8553
+
+
+ YES
+
+
+
+
+
+ 8554
+
+
+
+
+ 8557
+
+
+ YES
+
+
+
+
+
+ 8558
+
+
+ YES
+
+
+
+
+
+ 8559
+
+
+
+
+ 8560
+
+
+
+
+ 8561
+
+
+
+
+ 8568
+
+
+
+
+ 8569
+
+
+ YES
+
+
+
+
+
+ 8570
+
+
+
+
+ 8571
+
+
+ YES
+
+
+
+
+
+ 8572
+
+
+
+
+ 8575
+
+
+ YES
+
+
+
+
+
+ 8576
+
+
+
+
+ 8578
+
+
+ YES
+
+
+
+
+
+ 8579
+
+
+
+
+ 8596
+
+
+ YES
+
+
+
+
+
+ 8597
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 8598
+
+
+ YES
+
+
+
+
+
+ 8599
+
+
+
+
+ 8612
+
+
+ YES
+
+
+
+
+
+
+
+ 8608
+
+
+ YES
+
+
+
+
+
+ 8609
+
+
+ YES
+
+
+
+
+
+ 8610
+
+
+ YES
+
+
+
+
+
+ 8611
+
+
+
+
+ 8635
+
+
+
+
+ 8638
+
+
+ YES
+
+
+
+
+
+ 8639
+
+
+ YES
+
+
+
+
+
+ 8640
+
+
+
+
+ 8641
+
+
+
+
+ 8653
+
+
+ YES
+
+
+
+
+
+ 8654
+
+
+
+
+ 8655
+
+
+ YES
+
+
+
+
+
+ 8656
+
+
+
+
+ 8660
+
+
+ YES
+
+
+
+
+
+ 8661
+
+
+
+
+ 8663
+
+
+ YES
+
+
+
+
+
+ 8664
+
+
+
+
+ 8667
+
+
+ YES
+
+
+
+
+
+ 8668
+
+
+
+
+ 8677
+
+
+ YES
+
+
+
+
+
+ 8678
+
+
+
+
+ 8679
+
+
+ YES
+
+
+
+
+
+ 8680
+
+
+
+
+ 8681
+
+
+ YES
+
+
+
+
+
+ 8682
+
+
+
+
+ 8687
+
+
+ YES
+
+
+
+
+
+ 8688
+
+
+ YES
+
+
+
+
+
+ 8689
+
+
+ YES
+
+
+
+
+
+ 8690
+
+
+
+
+ 8691
+
+
+
+
+ 8692
+
+
+
+
+ 8706
+
+
+ YES
+
+
+
+
+
+ 8707
+
+
+
+
+ 8727
+
+
+ YES
+
+
+
+
+
+
+
+ 8718
+
+
+ YES
+
+
+
+
+
+ 8719
+
+
+
+
+ 8722
+
+
+ YES
+
+
+
+
+
+ 8723
+
+
+
+
+ 8724
+
+
+ YES
+
+
+
+
+
+ 8725
+
+
+
+
+ 8730
+
+
+ YES
+
+
+
+
+
+ 8731
+
+
+
+
+ 8735
+
+
+ YES
+
+
+
+
+
+ 8736
+
+
+
+
+ 8739
+
+
+ YES
+
+
+
+
+
+ 8740
+
+
+
+
+ 8741
+
+
+ YES
+
+
+
+
+
+ 8742
+
+
+ YES
+
+
+
+
+
+ 8743
+
+
+
+
+ 8744
+
+
+
+
+ 8746
+
+
+ YES
+
+
+
+
+
+ 8747
+
+
+
+
+ 491
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 6451
+
+
+
+
+ 492
+
+
+
+
+ 977
+
+
+
+
+ 978
+
+
+
+
+ 979
+
+
+
+
+ 980
+
+
+
+
+ 8758
+
+
+
+
+ 8975
+
+
+
+
+ 8978
+
+
+
+
+ 8979
+
+
+
+
+ 8991
+
+
+ YES
+
+
+
+
+
+ 8992
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 8993
+
+
+ YES
+
+
+
+
+
+ 8994
+
+
+
+
+ 8995
+
+
+ YES
+
+
+
+
+
+ 8996
+
+
+
+
+ 8997
+
+
+ YES
+
+
+
+
+
+ 8998
+
+
+
+
+ 9001
+
+
+ YES
+
+
+
+
+
+ 9002
+
+
+
+
+ 9007
+
+
+
+
+ 9019
+
+
+ YES
+
+
+
+
+
+ 9020
+
+
+
+
+ 9071
+
+
+ YES
+
+
+
+
+
+
+
+ 9032
+
+
+ YES
+
+
+
+
+
+ 9033
+
+
+ YES
+
+
+
+
+
+ 9039
+
+
+ YES
+
+
+
+
+
+ 9040
+
+
+ YES
+
+
+
+
+
+ 9034
+
+
+ YES
+
+
+
+
+
+
+
+ 9037
+
+
+
+
+ 9036
+
+
+
+
+ 9035
+
+
+
+
+ 9072
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9041
+
+
+ YES
+
+
+
+
+
+ 9063
+
+
+
+
+ 9043
+
+
+ YES
+
+
+
+
+
+ 9061
+
+
+
+
+ 9044
+
+
+ YES
+
+
+
+
+
+ 9060
+
+
+
+
+ 9045
+
+
+ YES
+
+
+
+
+
+ 9059
+
+
+
+
+ 9046
+
+
+ YES
+
+
+
+
+
+ 9058
+
+
+
+
+ 9047
+
+
+ YES
+
+
+
+
+
+ 9057
+
+
+
+
+ 9049
+
+
+ YES
+
+
+
+
+
+ 9055
+
+
+
+
+ 9050
+
+
+ YES
+
+
+
+
+
+ 9053
+
+
+ YES
+
+
+
+
+ 9051
+
+
+ YES
+
+
+
+
+
+ 9052
+
+
+
+
+ 9042
+
+
+ YES
+
+
+
+
+
+ 9062
+
+
+
+
+ 9075
+
+
+ YES
+
+
+
+
+
+ 9076
+
+
+
+
+ 9083
+
+
+
+
+ 9084
+
+
+
+
+ 8976
+
+
+
+
+ 3789
+
+
+
+
+ 4062
+
+
+
+
+ 3709
+
+
+
+
+ 9085
+
+
+
+
+ 9086
+
+
+
+
+ 9087
+
+
+ YES
+
+
+
+
+
+ 9088
+
+
+
+
+ 9089
+
+
+ YES
+
+
+
+
+
+ 9090
+
+
+
+
+ 9094
+
+
+
+
+ 9095
+
+
+
+
+ 9104
+
+
+ YES
+
+
+
+
+
+ 9105
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9106
+
+
+ YES
+
+
+
+
+
+ 9107
+
+
+
+
+ 9109
+
+
+ YES
+
+
+
+
+
+ 9110
+
+
+
+
+ 9112
+
+
+ YES
+
+
+
+
+
+ 9113
+
+
+ YES
+
+
+
+
+
+ 9114
+
+
+
+
+ 9115
+
+
+
+
+ 3665
+
+
+
+
+ 9129
+
+
+
+
+ 9131
+
+
+
+
+ 9133
+
+
+
+
+ 9135
+
+
+
+
+ 9137
+
+
+
+
+ 9138
+
+
+
+
+ 9139
+
+
+
+
+ 9140
+
+
+
+
+ 3886
+
+
+ YES
+
+
+
+
+
+ 3887
+
+
+
+
+ 9156
+
+
+ YES
+
+
+
+
+
+ 9157
+
+
+
+
+ 9184
+
+
+ YES
+
+
+
+
+
+ 9185
+
+
+ YES
+
+
+
+
+
+ 9186
+
+
+
+
+ 9187
+
+
+ YES
+
+
+
+
+
+ 9188
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 9195
+
+
+
+
+ 9206
+
+
+
+
+ 9208
+
+
+
+
+ 9209
+
+
+
+
+ 9210
+
+
+
+
+ 9211
+
+
+
+
+ 9236
+
+
+ YES
+
+
+
+
+
+ 9237
+
+
+ YES
+
+
+
+
+
+ 9238
+
+
+
+
+ 9257
+
+
+ YES
+
+
+
+
+
+ 9258
+
+
+
+
+ 9261
+
+
+
+
+ 9262
+
+
+ YES
+
+
+
+
+
+ 9263
+
+
+ YES
+
+
+
+
+
+ 9264
+
+
+
+
+ 9265
+
+
+ YES
+
+
+
+
+
+ 9266
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 9267
+
+
+
+
+ 9269
+
+
+
+
+ 9270
+
+
+
+
+ 9271
+
+
+
+
+ 9272
+
+
+
+
+ 9273
+
+
+
+
+ 9274
+
+
+
+
+ 9276
+
+
+ YES
+
+
+
+
+
+ 9277
+
+
+
+
+ 9278
+
+
+ YES
+
+
+
+
+
+ 9279
+
+
+ YES
+
+
+
+
+
+ 9280
+
+
+ YES
+
+
+
+
+
+ 9281
+
+
+
+
+ 9282
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 9283
+
+
+
+
+ 9284
+
+
+
+
+ 9285
+
+
+
+
+ 9286
+
+
+
+
+ 9287
+
+
+
+
+ 9288
+
+
+
+
+ 9289
+
+
+
+
+ 9290
+
+
+ YES
+
+
+
+
+
+ 9291
+
+
+
+
+ 9292
+
+
+ YES
+
+
+
+
+
+ 9293
+
+
+ YES
+
+
+
+
+
+ 9294
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 9295
+
+
+
+
+ 9296
+
+
+
+
+ 9297
+
+
+
+
+ 9299
+
+
+
+
+ 9300
+
+
+
+
+ 9301
+
+
+
+
+ 9302
+
+
+
+
+ 9389
+
+
+ YES
+
+
+
+
+
+ 9390
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 9393
+
+
+ YES
+
+
+
+
+
+ 9404
+
+
+ YES
+
+
+
+
+
+ 9405
+
+
+
+
+ 9392
+
+
+ YES
+
+
+
+
+
+ 9406
+
+
+ YES
+
+
+
+
+
+ 9407
+
+
+
+
+ 9397
+
+
+ YES
+
+
+
+
+
+ 9400
+
+
+
+
+ 9396
+
+
+ YES
+
+
+
+
+
+ 9401
+
+
+
+
+ 9395
+
+
+ YES
+
+
+
+
+
+ 9402
+
+
+
+
+ 9394
+
+
+ YES
+
+
+
+
+
+ 9403
+
+
+
+
+ 9408
+
+
+
+
+ 9409
+
+
+
+
+ 9424
+
+
+ YES
+
+
+
+
+
+ 9425
+
+
+
+
+ 7857
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 8301
+
+
+
+
+ 7858
+
+
+
+
+ 7859
+
+
+
+
+ 7860
+
+
+
+
+ 7861
+
+
+
+
+ 7862
+
+
+
+
+ 9633
+
+
+ YES
+
+
+
+
+
+ 7880
+
+
+ YES
+
+
+
+
+
+ 7881
+
+
+
+
+ 9634
+
+
+ YES
+
+
+
+
+
+
+
+ 7866
+
+
+ YES
+
+
+
+
+
+ 7867
+
+
+
+
+ 7863
+
+
+ YES
+
+
+
+
+
+ 7864
+
+
+
+
+ 9525
+
+
+ YES
+
+
+
+
+
+ 9526
+
+
+
+
+ 7875
+
+
+ YES
+
+
+
+
+
+ 7876
+
+
+
+
+ 7871
+
+
+ YES
+
+
+
+
+
+ 7872
+
+
+
+
+ 7873
+
+
+ YES
+
+
+
+
+
+ 7874
+
+
+
+
+ 7879
+
+
+
+
+ 9635
+
+
+
+
+ 9636
+
+
+
+
+ 9637
+
+
+
+
+ 9638
+
+
+
+
+ 9639
+
+
+
+
+ 9640
+
+
+
+
+ 9641
+
+
+
+
+ 9642
+
+
+ YES
+
+
+
+
+
+ 9643
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9644
+
+
+
+
+ 9645
+
+
+
+
+ 9646
+
+
+
+
+ 9647
+
+
+
+
+ 9648
+
+
+
+
+ 9649
+
+
+
+
+ 9650
+
+
+
+
+ 9651
+
+
+
+
+ 9652
+
+
+
+
+ 9653
+
+
+
+
+ 9654
+
+
+
+
+ 9655
+
+
+
+
+ 9656
+
+
+
+
+ 9657
+
+
+
+
+ 9658
+
+
+
+
+ 9677
+
+
+
+
+ 9705
+
+
+ YES
+
+
+
+ Window (Game Data Migration Assistant)
+
+
+ 9706
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9709
+
+
+ YES
+
+
+
+
+
+ 9710
+
+
+ YES
+
+
+
+
+
+ 9711
+
+
+ YES
+
+
+
+
+
+ 9712
+
+
+ YES
+
+
+
+
+
+ 9714
+
+
+ YES
+
+
+
+
+
+ 9715
+
+
+ YES
+
+
+
+
+
+ 9716
+
+
+
+
+ 9717
+
+
+
+
+ 9732
+
+
+
+
+ 9733
+
+
+
+
+ 9734
+
+
+
+
+ 9735
+
+
+
+
+ 9752
+
+
+ YES
+
+
+
+
+
+
+
+
+ 9753
+
+
+
+
+ 9754
+
+
+
+
+ 9755
+
+
+ YES
+
+
+
+
+
+
+
+ 9756
+
+
+
+
+ 9757
+
+
+ YES
+
+
+
+
+
+ 9758
+
+
+ YES
+
+
+
+
+
+ 9759
+
+
+
+
+ 9763
+
+
+ YES
+
+
+
+
+
+ 9764
+
+
+
+
+ 9776
+
+
+
+
+ 9777
+
+
+ YES
+
+
+
+
+
+ 9778
+
+
+
+
+ 9779
+
+
+ YES
+
+
+
+
+
+ 9780
+
+
+
+
+ 9824
+
+
+ YES
+
+
+
+
+
+
+
+ 9825
+
+
+
+
+ 9826
+
+
+
+
+ 9827
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 865
+
+
+ YES
+
+
+
+
+
+ 866
+
+
+
+
+ 883
+
+
+ YES
+
+
+
+
+
+ 884
+
+
+
+
+ 885
+
+
+ YES
+
+
+
+
+
+ 886
+
+
+
+
+ 1034
+
+
+ YES
+
+
+
+
+
+ 1035
+
+
+
+
+ 1036
+
+
+ YES
+
+
+
+
+
+ 1037
+
+
+
+
+ 1038
+
+
+ YES
+
+
+
+
+
+ 1039
+
+
+
+
+ 9811
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 897
+
+
+ YES
+
+
+
+
+
+ 899
+
+
+ YES
+
+
+
+
+
+ 901
+
+
+ YES
+
+
+
+
+
+ 903
+
+
+ YES
+
+
+
+
+
+ 905
+
+
+ YES
+
+
+
+
+
+ 907
+
+
+ YES
+
+
+
+
+
+ 909
+
+
+ YES
+
+
+
+
+
+ 911
+
+
+ YES
+
+
+
+
+
+ 913
+
+
+ YES
+
+
+
+
+
+ 928
+
+
+ YES
+
+
+
+
+
+ 930
+
+
+ YES
+
+
+
+
+
+ 932
+
+
+ YES
+
+
+
+
+
+ 934
+
+
+ YES
+
+
+
+
+
+ 936
+
+
+ YES
+
+
+
+
+
+ 938
+
+
+ YES
+
+
+
+
+
+ 940
+
+
+ YES
+
+
+
+
+
+ 941
+
+
+
+
+ 939
+
+
+
+
+ 937
+
+
+
+
+ 935
+
+
+
+
+ 933
+
+
+
+
+ 931
+
+
+
+
+ 929
+
+
+
+
+ 914
+
+
+
+
+ 912
+
+
+
+
+ 910
+
+
+
+
+ 908
+
+
+
+
+ 906
+
+
+
+
+ 904
+
+
+
+
+ 902
+
+
+
+
+ 900
+
+
+
+
+ 898
+
+
+
+
+ 9819
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 964
+
+
+ YES
+
+
+
+
+
+ 965
+
+
+ YES
+
+
+
+
+
+ 966
+
+
+
+
+ 967
+
+
+
+
+ 9832
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9870
+
+
+ YES
+
+
+
+
+
+ 9873
+
+
+
+
+ 9871
+
+
+ YES
+
+
+
+
+
+ 9872
+
+
+
+
+ 9866
+
+
+ YES
+
+
+
+
+
+ 9867
+
+
+
+
+ 9865
+
+
+ YES
+
+
+
+
+
+ 9868
+
+
+
+
+ 969
+
+
+ YES
+
+
+
+
+
+ 970
+
+
+
+
+ 968
+
+
+ YES
+
+
+
+
+
+ 971
+
+
+
+
+ 1040
+
+
+ YES
+
+
+
+
+
+ 1041
+
+
+
+
+ 887
+
+
+ YES
+
+
+
+
+
+ 888
+
+
+
+
+ 879
+
+
+ YES
+
+
+
+
+
+ 880
+
+
+
+
+ 9830
+
+
+ YES
+
+
+
+
+
+ 9858
+
+
+
+
+ 9831
+
+
+ YES
+
+
+
+
+
+ 9857
+
+
+
+
+ 9829
+
+
+
+
+ 9805
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9797
+
+
+ YES
+
+
+
+
+
+ 9798
+
+
+
+
+ 9803
+
+
+ YES
+
+
+
+
+
+ 9804
+
+
+
+
+ 9796
+
+
+
+
+ 2817
+
+
+ YES
+
+
+
+
+
+ 2818
+
+
+
+
+ 2811
+
+
+ YES
+
+
+
+
+
+ 2812
+
+
+
+
+ 926
+
+
+ YES
+
+
+
+
+
+ 927
+
+
+
+
+ 889
+
+
+ YES
+
+
+
+
+
+ 890
+
+
+
+
+ 924
+
+
+ YES
+
+
+
+
+
+ 925
+
+
+
+
+ 942
+
+
+ YES
+
+
+
+
+
+ 943
+
+
+
+
+ 944
+
+
+ YES
+
+
+
+
+
+ 945
+
+
+
+
+ 946
+
+
+ YES
+
+
+
+
+
+ 947
+
+
+
+
+ 2815
+
+
+ YES
+
+
+
+
+
+ 2820
+
+
+
+
+ 2816
+
+
+ YES
+
+
+
+
+
+ 2819
+
+
+
+
+ 2809
+
+
+ YES
+
+
+
+
+
+ 2810
+
+
+
+
+ 9807
+
+
+ YES
+
+
+
+
+
+ 9810
+
+
+
+
+ 9808
+
+
+ YES
+
+
+
+
+
+ 9809
+
+
+
+
+ 9806
+
+
+
+
+ 2813
+
+
+ YES
+
+
+
+
+
+ 2814
+
+
+
+
+ 9820
+
+
+ YES
+
+
+
+
+
+ 9823
+
+
+
+
+ 9821
+
+
+ YES
+
+
+
+
+
+ 9822
+
+
+
+
+ 9813
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9812
+
+
+
+
+ 9814
+
+
+ YES
+
+
+
+
+
+ 9817
+
+
+
+
+ 9815
+
+
+ YES
+
+
+
+
+
+ 9816
+
+
+
+
+ 961
+
+
+ YES
+
+
+
+
+
+ 962
+
+
+
+
+ 960
+
+
+ YES
+
+
+
+
+
+ 963
+
+
+
+
+ 957
+
+
+ YES
+
+
+
+
+
+ 958
+
+
+
+
+ 956
+
+
+ YES
+
+
+
+
+
+ 959
+
+
+
+
+ 953
+
+
+ YES
+
+
+
+
+
+ 954
+
+
+
+
+ 952
+
+
+ YES
+
+
+
+
+
+ 955
+
+
+
+
+ 949
+
+
+ YES
+
+
+
+
+
+ 950
+
+
+
+
+ 948
+
+
+ YES
+
+
+
+
+
+ 951
+
+
+
+
+ 9818
+
+
+
+
+ 9946
+
+
+ YES
+
+
+
+
+
+ 9947
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 9948
+
+
+ YES
+
+
+
+
+
+ 9949
+
+
+
+
+ 9952
+
+
+ YES
+
+
+
+
+
+ 9953
+
+
+
+
+ 9959
+
+
+
+
+ 9967
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 9965
+
+
+ YES
+
+
+
+
+
+ 9963
+
+
+ YES
+
+
+
+
+
+ 9961
+
+
+ YES
+
+
+
+
+
+ 9962
+
+
+
+
+ 9964
+
+
+
+
+ 9966
+
+
+
+
+ 9984
+
+
+ YES
+
+
+
+
+
+ 9985
+
+
+
+
+ 9950
+
+
+ YES
+
+
+
+
+
+ 9951
+
+
+
+
+ 9970
+
+
+ YES
+
+
+
+
+
+ 9971
+
+
+
+
+ 9972
+
+
+ YES
+
+
+
+
+
+ 9973
+
+
+
+
+ 9974
+
+
+ YES
+
+
+
+
+
+ 9975
+
+
+
+
+ 9976
+
+
+ YES
+
+
+
+
+
+ 9977
+
+
+
+
+ 9978
+
+
+ YES
+
+
+
+
+
+ 9979
+
+
+
+
+ 9980
+
+
+ YES
+
+
+
+
+
+ 9981
+
+
+
+
+ 9987
+
+
+ YES
+
+
+
+
+
+ 9988
+
+
+ YES
+
+
+
+
+
+ 9989
+
+
+ YES
+
+
+
+
+
+ 9990
+
+
+
+
+ 9991
+
+
+
+
+ 9992
+
+
+
+
+ 9993
+
+
+ YES
+
+
+
+
+
+ 9994
+
+
+
+
+ 10003
+
+
+ YES
+
+
+
+
+
+ 10004
+
+
+
+
+ 10002
+
+
+ YES
+
+
+
+
+
+ 10005
+
+
+ YES
+
+
+
+
+
+ 10006
+
+
+
+
+ 10015
+
+
+
+
+ 3787
+
+
+ YES
+
+
+
+
+
+ 3788
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 6622
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3798
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 3899
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 3849
+
+
+ YES
+
+
+
+
+
+ 3843
+
+
+ YES
+
+
+
+
+
+ 3844
+
+
+ YES
+
+
+
+
+
+ 3845
+
+
+ YES
+
+
+
+
+
+
+
+ 6233
+
+
+
+
+ 3847
+
+
+
+
+ 3846
+
+
+
+
+ 3850
+
+
+
+
+ 3804
+
+
+ YES
+
+
+
+
+
+ 3805
+
+
+
+
+ 3896
+
+
+ YES
+
+
+
+
+
+ 3888
+
+
+ YES
+
+
+
+
+
+ 9152
+
+
+ YES
+
+
+
+
+
+ 3900
+
+
+ YES
+
+
+
+
+
+ 3801
+
+
+ YES
+
+
+
+
+
+ 3808
+
+
+
+
+ 3901
+
+
+
+
+ 9153
+
+
+
+
+ 3889
+
+
+ YES
+
+
+
+
+
+ 3890
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 9260
+
+
+
+
+ 9259
+
+
+
+
+ 3894
+
+
+
+
+ 3893
+
+
+
+
+ 3892
+
+
+
+
+ 3891
+
+
+
+
+ 6634
+
+
+
+
+ 3897
+
+
+
+
+ 3802
+
+
+ YES
+
+
+
+
+
+ 3807
+
+
+
+
+ 3803
+
+
+ YES
+
+
+
+
+
+ 3806
+
+
+
+
+ 3773
+
+
+ YES
+
+
+
+
+
+ 3774
+
+
+
+
+ 3775
+
+
+ YES
+
+
+
+
+
+ 3776
+
+
+
+
+ 10020
+
+
+
+
+ 10021
+
+
+
+
+ 10026
+
+
+
+
+ 10027
+
+
+
+
+ 10029
+
+
+
+
+ 10036
+
+
+ YES
+
+
+
+ Panel (Stylus Settings)
+
+
+ 10037
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 10043
+
+
+ YES
+
+
+
+
+
+ 10044
+
+
+
+
+ 10047
+
+
+
+
+ 10060
+
+
+ YES
+
+
+
+
+
+ 10061
+
+
+
+
+ 10063
+
+
+ YES
+
+
+
+
+
+ 10064
+
+
+
+
+ 10067
+
+
+ YES
+
+
+
+
+
+ 10068
+
+
+ YES
+
+
+
+
+
+ 10069
+
+
+
+
+ 10072
+
+
+ YES
+
+
+
+
+
+ 10073
+
+
+
+
+ 10074
+
+
+ YES
+
+
+
+
+
+ 10075
+
+
+
+
+ 10076
+
+
+ YES
+
+
+
+
+
+ 10077
+
+
+
+
+ 10079
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 10081
+
+
+ YES
+
+
+
+
+
+ 10082
+
+
+ YES
+
+
+
+
+
+ 10083
+
+
+ YES
+
+
+
+
+
+ 10084
+
+
+ YES
+
+
+
+
+
+ 10085
+
+
+ YES
+
+
+
+
+
+ 10086
+
+
+ YES
+
+
+
+
+
+ 10087
+
+
+
+
+ 10088
+
+
+
+
+ 10089
+
+
+
+
+ 10090
+
+
+ YES
+
+
+
+
+
+ 10091
+
+
+
+
+ 10092
+
+
+
+
+ 10093
+
+
+
+
+ 2344
+
+
+ YES
+
+
+
+
+
+
+ 2369
+
+
+ YES
+
+
+
+
+
+ 2367
+
+
+ YES
+
+
+
+
+
+ 2368
+
+
+
+
+ 2370
+
+
+
+
+ 10108
+
+
+ YES
+
+
+
+
+
+ 10109
+
+
+
+
+ 10110
+
+
+ YES
+
+
+
+
+
+ 10111
+
+
+ YES
+
+
+
+
+
+ 10112
+
+
+
+
+ 10113
+
+
+ YES
+
+
+
+
+
+ 10114
+
+
+
+
+ 10115
+
+
+ YES
+
+
+
+
+
+ 10116
+
+
+
+
+ 10117
+
+
+ YES
+
+
+
+
+
+ 10118
+
+
+ YES
+
+
+
+
+
+ 10119
+
+
+
+
+ 10120
+
+
+ YES
+
+
+
+
+
+ 10121
+
+
+
+
+ 10135
+
+
+
+
+ 10136
+
+
+
+
+ 10140
+
+
+
+
+ 10141
+
+
+ YES
+
+
+
+
+
+ 10142
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 10143
+
+
+
+
+ 10144
+
+
+
+
+ 10145
+
+
+
+
+ 10146
+
+
+
+
+ 10147
+
+
+
+
+ 10148
+
+
+
+
+ 10164
+
+
+ YES
+
+
+
+
+
+ 10165
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10166
+
+
+ YES
+
+
+
+
+
+ 10167
+
+
+
+
+ 10168
+
+
+
+
+ 10169
+
+
+ YES
+
+
+
+
+
+ 10170
+
+
+
+
+ 10171
+
+
+ YES
+
+
+
+
+
+ 10172
+
+
+
+
+ 10173
+
+
+ YES
+
+
+
+
+
+ 10174
+
+
+
+
+ 10175
+
+
+ YES
+
+
+
+
+
+ 10176
+
+
+
+
+ 10177
+
+
+ YES
+
+
+
+
+
+ 10178
+
+
+
+
+ 10179
+
+
+ YES
+
+
+
+
+
+ 10180
+
+
+
+
+ 10190
+
+
+
+
+ 10191
+
+
+ YES
+
+
+
+
+
+ 10192
+
+
+
+
+ 10196
+
+
+ YES
+
+
+
+
+
+ 10197
+
+
+
+
+ 10200
+
+
+
+
+ 1626
+
+
+ YES
+
+
+
+
+
+ 1627
+
+
+ YES
+
+
+
+
+
+ 1628
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1629
+
+
+
+
+ 1630
+
+
+
+
+ 1631
+
+
+
+
+ 1636
+
+
+
+
+ 1638
+
+
+
+
+ 3644
+
+
+
+
+ 6238
+
+
+
+
+ 9144
+
+
+
+
+ 9146
+
+
+
+
+ 9148
+
+
+
+
+ 9150
+
+
+
+
+ 1643
+
+
+
+
+ 1640
+
+
+
+
+ 1646
+
+
+
+
+ 1647
+
+
+
+
+ 1641
+
+
+
+
+ 1637
+
+
+
+
+ 1639
+
+
+
+
+ 10032
+
+
+
+
+ 10034
+
+
+
+
+ 10201
+
+
+ Menu Item (6xBRZ)
+
+
+ 10203
+
+
+
+
+ 10243
+
+
+ YES
+
+
+
+
+
+ 10244
+
+
+
+
+ 10247
+
+
+ YES
+
+
+
+
+
+ 10248
+
+
+
+
+ 10218
+
+
+ YES
+
+
+
+
+
+ 10219
+
+
+
+
+ 10221
+
+
+ YES
+
+
+
+
+
+ 10224
+
+
+ YES
+
+
+
+
+
+ 10225
+
+
+ YES
+
+
+
+
+
+
+
+ 10229
+
+
+
+
+ 10228
+
+
+
+
+ 10227
+
+
+
+
+ 10222
+
+
+ YES
+
+
+
+
+
+ 10223
+
+
+
+
+ 10213
+
+
+ YES
+
+
+
+
+
+ 10214
+
+
+
+
+ 10205
+
+
+ YES
+
+
+
+
+
+ 10206
+
+
+
+
+ 10236
+
+
+ YES
+
+
+
+
+
+ 10237
+
+
+
+
+ 10239
+
+
+ YES
+
+
+
+
+
+ 10240
+
+
+ YES
+
+
+
+
+
+ 10241
+
+
+
+
+ 10251
+
+
+
+
+ 10252
+
+
+
+
+ 10253
+
+
+
+
+ 10261
+
+
+ YES
+
+
+
+
+
+ 10262
+
+
+
+
+ 10264
+
+
+ YES
+
+
+
+
+
+ 10265
+
+
+
+
+ 10267
+
+
+
+
+ 10268
+
+
+
+
+ 10279
+
+
+ YES
+
+
+
+
+
+ 10280
+
+
+
+
+ 10281
+
+
+ YES
+
+
+
+
+
+ 10282
+
+
+ YES
+
+
+
+
+
+ 10283
+
+
+ YES
+
+
+
+
+
+
+
+ 10284
+
+
+
+
+ 10285
+
+
+
+
+ 10286
+
+
+
+
+ 10287
+
+
+ YES
+
+
+
+
+
+ 10288
+
+
+
+
+ 10289
+
+
+ YES
+
+
+
+
+
+ 10290
+
+
+ YES
+
+
+
+
+
+ 10291
+
+
+ YES
+
+
+
+
+
+
+
+ 10292
+
+
+
+
+ 10293
+
+
+
+
+ 10294
+
+
+
+
+ 10298
+
+
+
+
+ 10299
+
+
+ YES
+
+
+
+
+
+ 10300
+
+
+
+
+ 10302
+
+
+ YES
+
+
+
+
+
+ 10303
+
+
+
+
+ 10305
+
+
+ YES
+
+
+
+
+
+ 10306
+
+
+
+
+ 10308
+
+
+ YES
+
+
+
+
+
+ 10309
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10310
+
+
+
+
+ 10311
+
+
+
+
+ 10312
+
+
+
+
+ 10313
+
+
+
+
+ 10314
+
+
+
+
+ 10315
+
+
+
+
+ 10316
+
+
+
+
+ 10317
+
+
+
+
+ 10318
+
+
+
+
+ 10342
+
+
+ YES
+
+
+
+
+
+
+
+
+ 10350
+
+
+ YES
+
+
+
+
+
+ 10351
+
+
+ YES
+
+
+
+
+
+ 10352
+
+
+ YES
+
+
+
+
+
+
+
+
+ 10353
+
+
+
+
+ 10354
+
+
+
+
+ 10355
+
+
+
+
+ 10356
+
+
+ YES
+
+
+
+
+
+ 10357
+
+
+
+
+ 10358
+
+
+
+
+ 10359
+
+
+ YES
+
+
+
+
+
+ 10360
+
+
+ YES
+
+
+
+
+
+ 10361
+
+
+
+
+ 10362
+
+
+ YES
+
+
+
+
+
+ 10363
+
+
+ YES
+
+
+
+
+
+
+
+
+ 10364
+
+
+
+
+ 10365
+
+
+
+
+ 10366
+
+
+
+
+ 10367
+
+
+
+
+ 10370
+
+
+ YES
+
+
+
+
+
+ 10371
+
+
+ YES
+
+
+
+
+
+ 10372
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 10373
+
+
+
+
+ 10374
+
+
+
+
+ 10375
+
+
+
+
+ 10376
+
+
+
+
+ 10377
+
+
+
+
+ 10378
+
+
+ YES
+
+
+
+
+
+ 10379
+
+
+ YES
+
+
+
+
+
+ 10380
+
+
+ YES
+
+
+
+
+
+
+ 10381
+
+
+
+
+ 10382
+
+
+
+
+ 10386
+
+
+ YES
+
+
+
+
+
+ 10387
+
+
+
+
+ 10388
+
+
+ YES
+
+
+
+
+
+ 10389
+
+
+
+
+ 10390
+
+
+ YES
+
+
+
+
+
+ 10391
+
+
+
+
+ 10397
+
+
+ YES
+
+
+
+
+
+ 10398
+
+
+
+
+ 10401
+
+
+ YES
+
+
+
+
+
+ 10402
+
+
+ YES
+
+
+
+
+
+ 10403
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10404
+
+
+
+
+ 10405
+
+
+
+
+ 10406
+
+
+
+
+ 10407
+
+
+
+
+ 10410
+
+
+ YES
+
+
+
+
+
+ 10411
+
+
+
+
+ 10412
+
+
+ YES
+
+
+
+
+
+ 10413
+
+
+ YES
+
+
+
+
+
+ 10414
+
+
+
+
+ 10418
+
+
+ YES
+
+
+
+
+
+ 10419
+
+
+
+
+ 10421
+
+
+
+
+ 10422
+
+
+
+
+ 10423
+
+
+
+
+ 10424
+
+
+
+
+ 10436
+
+
+
+
+ 10437
+
+
+
+
+ 10438
+
+
+
+
+ 10439
+
+
+
+
+ 10440
+
+
+
+
+ 10441
+
+
+
+
+ 10442
+
+
+
+
+ 10443
+
+
+
+
+ 10444
+
+
+
+
+ 10445
+
+
+ YES
+
+
+
+
+
+ 10446
+
+
+
+
+ 10447
+
+
+ YES
+
+
+
+
+
+ 10448
+
+
+
+
+ 10462
+
+
+
+
+ 10463
+
+
+
+
+ 10464
+
+
+
+
+ 10465
+
+
+
+
+ 10466
+
+
+
+
+ 10467
+
+
+
+
+ 10468
+
+
+
+
+ 10469
+
+
+
+
+ 10470
+
+
+ YES
+
+
+
+
+
+ 10471
+
+
+
+
+ 10472
+
+
+ YES
+
+
+
+
+
+ 10473
+
+
+
+
+ 10495
+
+
+
+
+ 10498
+
+
+ YES
+
+
+
+
+
+ 10499
+
+
+
+
+ 10505
+
+
+
+
+ 10508
+
+
+ YES
+
+
+
+
+
+ 10509
+
+
+
+
+ 10521
+
+
+
+
+ 10522
+
+
+ YES
+
+
+
+ Window (NDS Error)
+
+
+ 10523
+
+
+ YES
+
+
+
+
+
+
+
+
+ 10524
+
+
+ YES
+
+
+
+
+
+ 10525
+
+
+
+
+ 10526
+
+
+ YES
+
+
+
+
+
+ 10527
+
+
+
+
+ 10528
+
+
+ YES
+
+
+
+
+
+ 10529
+
+
+
+
+ 10530
+
+
+ YES
+
+
+
+
+
+ 10531
+
+
+
+
+ 10540
+
+
+ YES
+
+
+
+ Panel (Snapshot Capture Tool)
+
+
+ 10541
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 10592
+
+
+ YES
+
+
+
+
+
+ 10593
+
+
+
+
+ 10617
+
+
+ YES
+
+
+
+
+
+ 10618
+
+
+
+
+ 10619
+
+
+ YES
+
+
+
+
+
+ 10620
+
+
+
+
+ 10624
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Screenshot Capture Tool Layout Drawer Content View
+
+
+ 10625
+
+
+ Screenshot Capture Tool Drawer
+
+
+ 10676
+
+
+ YES
+
+
+
+
+
+ 10690
+
+
+ YES
+
+
+
+
+
+
+
+ 10691
+
+
+
+
+ 10692
+
+
+
+
+ 10693
+
+
+
+
+ 10714
+
+
+
+
+ 10727
+
+
+ YES
+
+
+
+
+
+ 10728
+
+
+ YES
+
+
+
+
+
+ 10729
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 10730
+
+
+
+
+ 10731
+
+
+
+
+ 10732
+
+
+
+
+ 10733
+
+
+
+
+ 10734
+
+
+
+
+ 10741
+
+
+ YES
+
+
+
+
+
+ 10742
+
+
+ YES
+
+
+
+
+
+ 10743
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 10744
+
+
+
+
+ 10745
+
+
+
+
+ 10746
+
+
+
+
+ 10747
+
+
+ YES
+
+
+
+
+
+ 10748
+
+
+ YES
+
+
+
+
+
+ 10749
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10750
+
+
+
+
+ 10751
+
+
+
+
+ 10752
+
+
+
+
+ 10753
+
+
+
+
+ 10754
+
+
+
+
+ 10755
+
+
+
+
+ 10756
+
+
+
+
+ 10757
+
+
+
+
+ 10758
+
+
+
+
+ 10759
+
+
+
+
+ 10760
+
+
+
+
+ 10761
+
+
+
+
+ 10762
+
+
+
+
+ 10763
+
+
+
+
+ 10764
+
+
+
+
+ 10765
+
+
+
+
+ 10766
+
+
+
+
+ 10767
+
+
+
+
+ 10768
+
+
+
+
+ 10769
+
+
+
+
+ 10770
+
+
+
+
+ 10771
+
+
+
+
+ 10772
+
+
+
+
+ 10773
+
+
+
+
+ 10776
+
+
+ YES
+
+
+
+
+
+ 10774
+
+
+ YES
+
+
+
+
+
+ 10775
+
+
+
+
+ 10777
+
+
+ YES
+
+
+
+
+
+ 10778
+
+
+
+
+ 10779
+
+
+ YES
+
+
+
+
+
+ 10780
+
+
+
+
+ 10781
+
+
+ YES
+
+
+
+
+
+ 10782
+
+
+
+
+ 10783
+
+
+
+
+ 10784
+
+
+
+
+ 10785
+
+
+ YES
+
+
+
+
+
+ 10786
+
+
+
+
+ 10866
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 10630
+
+
+ YES
+
+
+
+
+
+ 10631
+
+
+
+
+ 10712
+
+
+ YES
+
+
+
+
+
+ 10713
+
+
+
+
+ 10725
+
+
+ YES
+
+
+
+
+
+ 10726
+
+
+
+
+ 10716
+
+
+ YES
+
+
+
+
+
+ 10717
+
+
+ YES
+
+
+
+
+
+ 10718
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 10724
+
+
+
+
+ 10723
+
+
+
+
+ 10722
+
+
+
+
+ 10721
+
+
+
+
+ 10720
+
+
+
+
+ 10719
+
+
+
+
+ 10873
+
+
+ YES
+
+
+
+
+
+ 10874
+
+
+ YES
+
+
+
+
+
+ 10875
+
+
+
+
+ 10876
+
+
+ YES
+
+
+
+
+
+ 10877
+
+
+ YES
+
+
+
+
+
+
+
+ 10881
+
+
+
+
+ 10882
+
+
+
+
+ 10883
+
+
+
+
+ 10884
+
+
+ YES
+
+
+
+
+
+ 10885
+
+
+ YES
+
+
+
+
+
+ 10886
+
+
+
+
+ 10887
+
+
+ YES
+
+
+
+
+
+ 10888
+
+
+ YES
+
+
+
+
+
+
+
+
+ 10889
+
+
+
+
+ 10890
+
+
+
+
+ 10891
+
+
+
+
+ 10892
+
+
+
+
+ 10893
+
+
+ YES
+
+
+
+
+
+ 10894
+
+
+ YES
+
+
+
+
+
+ 10895
+
+
+
+
+ 10896
+
+
+ YES
+
+
+
+
+
+ 10897
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 10898
+
+
+
+
+ 10899
+
+
+
+
+ 10900
+
+
+
+
+ 10901
+
+
+
+
+ 10902
+
+
+
+
+ 10903
+
+
+ YES
+
+
+
+ Panel (AV Capture Tool)
+
+
+ 10904
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 10911
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10912
+
+
+ YES
+
+
+
+
+
+ 10913
+
+
+ YES
+
+
+
+
+
+ 10914
+
+
+ YES
+
+
+
+
+
+ 10915
+
+
+ YES
+
+
+
+
+
+ 10916
+
+
+
+
+ 10917
+
+
+
+
+ 10918
+
+
+
+
+ 10919
+
+
+
+
+ 10920
+
+
+ YES
+
+
+
+
+
+ 10921
+
+
+ YES
+
+
+
+
+
+ 10922
+
+
+ YES
+
+
+
+
+
+ 10923
+
+
+ YES
+
+
+
+
+
+ 10924
+
+
+ YES
+
+
+
+
+
+ 10925
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10926
+
+
+
+
+ 10932
+
+
+
+
+ 10933
+
+
+
+
+ 10934
+
+
+
+
+ 10905
+
+
+ YES
+
+
+
+
+
+ 10942
+
+
+ YES
+
+
+
+
+
+ 10943
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10956
+
+
+
+
+ 10955
+
+
+
+
+ 10954
+
+
+
+
+ 10953
+
+
+
+
+ 10952
+
+
+
+
+ 10951
+
+
+
+
+ 10950
+
+
+
+
+ 10949
+
+
+
+
+ 10948
+
+
+
+
+ 10947
+
+
+
+
+ 10946
+
+
+
+
+ 10945
+
+
+
+
+ 10944
+
+
+
+
+ 10910
+
+
+ YES
+
+
+
+
+
+ 10935
+
+
+
+
+ 10909
+
+
+ YES
+
+
+
+
+
+ 10936
+
+
+
+
+ 10908
+
+
+ YES
+
+
+
+
+
+ 10937
+
+
+ YES
+
+
+
+
+
+ 10938
+
+
+
+
+ 10907
+
+
+ YES
+
+
+
+
+
+ 10939
+
+
+
+
+ 10906
+
+
+ YES
+
+
+
+
+
+ 10940
+
+
+ YES
+
+
+
+
+
+ 10941
+
+
+
+
+ 10958
+
+
+
+
+ 10959
+
+
+
+
+ 10960
+
+
+
+
+ 10961
+
+
+
+
+ 10989
+
+
+ YES
+
+
+
+
+
+ 10990
+
+
+
+
+ 10988
+
+
+ YES
+
+
+
+
+
+ 10991
+
+
+ YES
+
+
+
+
+
+ 10992
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11012
+
+
+
+
+ 11011
+
+
+
+
+ 11010
+
+
+
+
+ 11009
+
+
+
+
+ 11008
+
+
+
+
+ 11007
+
+
+
+
+ 11006
+
+
+
+
+ 11005
+
+
+
+
+ 11004
+
+
+
+
+ 11003
+
+
+
+
+ 11002
+
+
+
+
+ 11001
+
+
+
+
+ 11000
+
+
+
+
+ 10998
+
+
+
+
+ 10996
+
+
+
+
+ 10995
+
+
+
+
+ 10994
+
+
+
+
+ 10993
+
+
+
+
+ 11025
+
+
+
+
+ 11027
+
+
+ YES
+
+
+
+
+
+ 11028
+
+
+
+
+ 11029
+
+
+
+
+ 11035
+
+
+ YES
+
+
+
+
+
+ 11036
+
+
+
+
+ 11037
+
+
+
+
+ 11051
+
+
+
+
+ 11052
+
+
+
+
+ 11053
+
+
+
+
+ 11054
+
+
+
+
+ 11055
+
+
+
+
+ 11056
+
+
+
+
+ 11057
+
+
+
+
+ 11058
+
+
+
+
+ 11059
+
+
+
+
+ 11060
+
+
+
+
+ 11061
+
+
+
+
+ 11062
+
+
+ AV Capture Tool Drawer
+
+
+ 11066
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AV Capture Tool Layout Drawer Content View
+
+
+ 11067
+
+
+ YES
+
+
+
+
+
+ 11068
+
+
+ YES
+
+
+
+
+
+ 11069
+
+
+ YES
+
+
+
+
+
+ 11072
+
+
+
+
+ 11073
+
+
+
+
+ 11074
+
+
+ YES
+
+
+
+
+
+ 11075
+
+
+ YES
+
+
+
+
+
+ 11076
+
+
+ YES
+
+
+
+
+
+ 11077
+
+
+ YES
+
+
+
+
+
+ 11078
+
+
+ YES
+
+
+
+
+
+ 11079
+
+
+ YES
+
+
+
+
+
+ 11080
+
+
+ YES
+
+
+
+
+
+ 11081
+
+
+ YES
+
+
+
+
+
+ 11082
+
+
+ YES
+
+
+
+
+
+ 11083
+
+
+ YES
+
+
+
+
+
+ 11084
+
+
+ YES
+
+
+
+
+
+ 11085
+
+
+ YES
+
+
+
+
+
+ 11086
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 11087
+
+
+
+
+ 11088
+
+
+
+
+ 11089
+
+
+
+
+ 11090
+
+
+
+
+ 11091
+
+
+
+
+ 11092
+
+
+
+
+ 11093
+
+
+ YES
+
+
+
+
+
+ 11094
+
+
+
+
+ 11095
+
+
+ YES
+
+
+
+
+
+ 11096
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 11097
+
+
+
+
+ 11098
+
+
+
+
+ 11099
+
+
+
+
+ 11100
+
+
+
+
+ 11101
+
+
+
+
+ 11102
+
+
+
+
+ 11103
+
+
+ YES
+
+
+
+
+
+ 11104
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11105
+
+
+
+
+ 11106
+
+
+
+
+ 11107
+
+
+
+
+ 11108
+
+
+
+
+ 11109
+
+
+
+
+ 11110
+
+
+
+
+ 11111
+
+
+
+
+ 11112
+
+
+
+
+ 11113
+
+
+
+
+ 11114
+
+
+
+
+ 11115
+
+
+
+
+ 11116
+
+
+
+
+ 11117
+
+
+
+
+ 11118
+
+
+
+
+ 11119
+
+
+
+
+ 11120
+
+
+
+
+ 11121
+
+
+
+
+ 11122
+
+
+
+
+ 11123
+
+
+
+
+ 11124
+
+
+
+
+ 11125
+
+
+
+
+ 11126
+
+
+
+
+ 11127
+
+
+
+
+ 11128
+
+
+ YES
+
+
+
+
+
+ 11129
+
+
+ YES
+
+
+
+
+
+
+
+ 11130
+
+
+
+
+ 11131
+
+
+
+
+ 11132
+
+
+
+
+ 11133
+
+
+
+
+ 11134
+
+
+ YES
+
+
+
+
+
+ 11135
+
+
+ YES
+
+
+
+
+
+
+
+
+ 11136
+
+
+
+
+ 11137
+
+
+
+
+ 11138
+
+
+
+
+ 11139
+
+
+
+
+ 11140
+
+
+
+
+ 11162
+
+
+ YES
+
+
+
+
+
+
+
+ 11163
+
+
+
+
+ 11164
+
+
+
+
+ 11165
+
+
+
+
+ 11166
+
+
+ YES
+
+
+
+
+
+ 11167
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 11168
+
+
+
+
+ 11169
+
+
+
+
+ 11170
+
+
+
+
+ 11171
+
+
+
+
+ 11172
+
+
+
+
+ 11173
+
+
+
+
+ 11185
+
+
+ Mac AV Capture Tool Delegate
+
+
+ 11261
+
+
+
+
+ 11263
+
+
+
+
+ 11265
+
+
+
+
+ 11267
+
+
+
+
+ 11268
+
+
+
+
+ 11270
+
+
+
+
+ 11272
+
+
+
+
+ 11274
+
+
+
+
+ 11276
+
+
+
+
+ 11278
+
+
+
+
+ 11338
+
+
+ YES
+
+
+
+
+
+ 11339
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+ 11344
+
+
+ YES
+
+
+
+
+
+ 11345
+
+
+ YES
+
+
+
+
+
+ 11346
+
+
+
+
+ 11347
+
+
+
+
+ 11352
+
+
+ YES
+
+
+
+
+
+
+ 11353
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 11354
+
+
+
+
+ 11355
+
+
+
+
+ 11356
+
+
+
+
+ 11365
+
+
+ YES
+
+
+
+
+
+ 11366
+
+
+
+
+ 11367
+
+
+
+
+ 11368
+
+
+ YES
+
+
+
+
+
+ 11369
+
+
+ YES
+
+
+
+
+
+
+
+
+ 11370
+
+
+
+
+ 11371
+
+
+
+
+ 11372
+
+
+
+
+ 11373
+
+
+
+
+ 11374
+
+
+
+
+ 11375
+
+
+
+
+ 11376
+
+
+
+
+ 11363
+
+
+ YES
+
+
+
+
+
+ 11364
+
+
+
+
+ 11385
+
+
+
+
+ 11391
+
+
+ YES
+
+
+
+
+
+ 11392
+
+
+ YES
+
+
+
+
+
+ 11393
+
+
+ YES
+
+
+
+
+ 11397
+
+
+ YES
+
+
+
+
+
+ 11398
+
+
+
+
+ 11399
+
+
+
+
+ 11422
+
+
+ YES
+
+
+
+
+
+ 11423
+
+
+
+
+ 11424
+
+
+ YES
+
+
+
+
+
+ 11425
+
+
+
+
+ 11426
+
+
+ YES
+
+
+
+
+
+ 11427
+
+
+
+
+ 11428
+
+
+ YES
+
+
+
+
+
+
+
+ 11429
+
+
+ YES
+
+
+
+
+
+ 11430
+
+
+ YES
+
+
+
+
+
+ 11431
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11432
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11433
+
+
+ YES
+
+
+
+
+
+ 11434
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11435
+
+
+ YES
+
+
+
+
+
+ 11436
+
+
+
+
+ 11442
+
+
+ YES
+
+
+
+
+
+ 11443
+
+
+
+
+ 11444
+
+
+ YES
+
+
+
+
+
+ 11445
+
+
+
+
+ 11446
+
+
+ YES
+
+
+
+
+
+ 11447
+
+
+
+
+ 11448
+
+
+ YES
+
+
+
+
+
+ 11449
+
+
+ YES
+
+
+
+
+
+ 11450
+
+
+
+
+ 11451
+
+
+ YES
+
+
+
+
+
+ 11452
+
+
+ YES
+
+
+
+
+
+ 11453
+
+
+
+
+ 11454
+
+
+ YES
+
+
+
+
+
+ 11455
+
+
+ YES
+
+
+
+
+
+ 11456
+
+
+
+
+ 11457
+
+
+ YES
+
+
+
+
+
+ 11458
+
+
+ YES
+
+
+
+
+
+ 11459
+
+
+
+
+ 11460
+
+
+ YES
+
+
+
+
+
+ 11461
+
+
+ YES
+
+
+
+
+
+ 11462
+
+
+ YES
+
+
+
+
+
+ 11463
+
+
+ YES
+
+
+
+
+
+ 11464
+
+
+ YES
+
+
+
+
+
+ 11465
+
+
+ YES
+
+
+
+
+
+ 11466
+
+
+ YES
+
+
+
+
+
+ 11467
+
+
+ YES
+
+
+
+
+
+ 11468
+
+
+ YES
+
+
+
+
+
+ 11469
+
+
+
+
+ 11470
+
+
+ YES
+
+
+
+
+
+ 11471
+
+
+
+
+ 11472
+
+
+ YES
+
+
+
+
+
+ 11473
+
+
+
+
+ 11474
+
+
+ YES
+
+
+
+
+
+ 11475
+
+
+
+
+ 11476
+
+
+
+
+ 11477
+
+
+
+
+ 11478
+
+
+
+
+ 11479
+
+
+
+
+ 11480
+
+
+ YES
+
+
+
+
+
+ 11481
+
+
+ YES
+
+
+
+
+
+ 11482
+
+
+ YES
+
+
+
+
+
+ 11483
+
+
+ YES
+
+
+
+
+
+ 11484
+
+
+ YES
+
+
+
+
+
+ 11485
+
+
+ YES
+
+
+
+
+
+ 11486
+
+
+ YES
+
+
+
+
+
+ 11487
+
+
+ YES
+
+
+
+
+
+ 11488
+
+
+ YES
+
+
+
+
+
+ 11489
+
+
+
+
+ 11490
+
+
+ YES
+
+
+
+
+
+ 11491
+
+
+
+
+ 11492
+
+
+ YES
+
+
+
+
+
+ 11493
+
+
+
+
+ 11494
+
+
+ YES
+
+
+
+
+
+ 11495
+
+
+
+
+ 11496
+
+
+
+
+ 11497
+
+
+
+
+ 11498
+
+
+
+
+ 11499
+
+
+
+
+ 11500
+
+
+ YES
+
+
+
+
+
+ 11501
+
+
+ YES
+
+
+
+
+
+ 11502
+
+
+ YES
+
+
+
+
+
+ 11503
+
+
+ YES
+
+
+
+
+
+ 11504
+
+
+ YES
+
+
+
+
+
+ 11505
+
+
+ YES
+
+
+
+
+
+ 11506
+
+
+ YES
+
+
+
+
+
+ 11507
+
+
+ YES
+
+
+
+
+
+ 11508
+
+
+ YES
+
+
+
+
+
+ 11509
+
+
+
+
+ 11510
+
+
+ YES
+
+
+
+
+
+ 11511
+
+
+
+
+ 11512
+
+
+ YES
+
+
+
+
+
+ 11513
+
+
+
+
+ 11514
+
+
+ YES
+
+
+
+
+
+ 11515
+
+
+
+
+ 11516
+
+
+
+
+ 11517
+
+
+
+
+ 11518
+
+
+
+
+ 11519
+
+
+
+
+ 11520
+
+
+ YES
+
+
+
+
+
+ 11521
+
+
+
+
+ 11522
+
+
+ YES
+
+
+
+
+
+ 11523
+
+
+
+
+ 11524
+
+
+ YES
+
+
+
+
+
+ 11525
+
+
+
+
+ 11526
+
+
+ YES
+
+
+
+
+
+ 11527
+
+
+ YES
+
+
+
+
+
+ 11528
+
+
+ YES
+
+
+
+
+
+ 11529
+
+
+ YES
+
+
+
+
+
+ 11530
+
+
+ YES
+
+
+
+
+
+ 11531
+
+
+ YES
+
+
+
+
+
+ 11532
+
+
+ YES
+
+
+
+
+
+ 11533
+
+
+ YES
+
+
+
+
+
+ 11534
+
+
+ YES
+
+
+
+
+
+ 11535
+
+
+ YES
+
+
+
+
+
+ 11536
+
+
+ YES
+
+
+
+
+
+ 11537
+
+
+ YES
+
+
+
+
+
+ 11538
+
+
+ YES
+
+
+
+
+
+ 11539
+
+
+ YES
+
+
+
+
+
+ 11540
+
+
+ YES
+
+
+
+
+
+ 11541
+
+
+ YES
+
+
+
+
+
+ 11542
+
+
+ YES
+
+
+
+
+
+ 11543
+
+
+ YES
+
+
+
+
+
+ 11544
+
+
+ YES
+
+
+
+
+
+ 11545
+
+
+ YES
+
+
+
+
+
+ 11546
+
+
+ YES
+
+
+
+
+
+ 11547
+
+
+ YES
+
+
+
+
+
+ 11548
+
+
+ YES
+
+
+
+
+
+ 11549
+
+
+ YES
+
+
+
+
+
+ 11550
+
+
+ YES
+
+
+
+
+
+ 11551
+
+
+ YES
+
+
+
+
+
+ 11552
+
+
+ YES
+
+
+
+
+
+ 11553
+
+
+ YES
+
+
+
+
+
+ 11554
+
+
+ YES
+
+
+
+
+
+ 11555
+
+
+ YES
+
+
+
+
+
+ 11556
+
+
+ YES
+
+
+
+
+
+ 11557
+
+
+ YES
+
+
+
+
+
+ 11558
+
+
+ YES
+
+
+
+
+
+ 11559
+
+
+ YES
+
+
+
+
+
+ 11560
+
+
+ YES
+
+
+
+
+
+ 11561
+
+
+
+
+ 11562
+
+
+
+
+ 11563
+
+
+
+
+ 11564
+
+
+ YES
+
+
+
+
+
+ 11565
+
+
+
+
+ 11566
+
+
+ YES
+
+
+
+
+
+ 11567
+
+
+
+
+ 11568
+
+
+ YES
+
+
+
+
+
+ 11569
+
+
+
+
+ 11570
+
+
+ YES
+
+
+
+
+
+ 11571
+
+
+
+
+ 11572
+
+
+
+
+ 11573
+
+
+
+
+ 11574
+
+
+
+
+ 11575
+
+
+
+
+ 11576
+
+
+ YES
+
+
+
+
+
+ 11577
+
+
+
+
+ 11578
+
+
+ YES
+
+
+
+
+
+ 11579
+
+
+
+
+ 11580
+
+
+ YES
+
+
+
+
+
+ 11581
+
+
+
+
+ 11582
+
+
+ YES
+
+
+
+
+
+ 11583
+
+
+
+
+ 11584
+
+
+
+
+ 11585
+
+
+
+
+ 11586
+
+
+
+
+ 11587
+
+
+
+
+ 11588
+
+
+ YES
+
+
+
+
+
+ 11589
+
+
+
+
+ 11590
+
+
+ YES
+
+
+
+
+
+ 11591
+
+
+
+
+ 11592
+
+
+ YES
+
+
+
+
+
+ 11593
+
+
+
+
+ 11594
+
+
+ YES
+
+
+
+
+
+ 11595
+
+
+
+
+ 11596
+
+
+
+
+ 11597
+
+
+
+
+ 11598
+
+
+
+
+ 11599
+
+
+
+
+ 11600
+
+
+ YES
+
+
+
+
+
+ 11601
+
+
+
+
+ 11602
+
+
+ YES
+
+
+
+
+
+ 11603
+
+
+
+
+ 11604
+
+
+ YES
+
+
+
+
+
+ 11605
+
+
+
+
+ 11606
+
+
+ YES
+
+
+
+
+
+ 11607
+
+
+
+
+ 11608
+
+
+
+
+ 11609
+
+
+
+
+ 11610
+
+
+
+
+ 11611
+
+
+
+
+ 11612
+
+
+ YES
+
+
+
+
+
+ 11613
+
+
+ YES
+
+
+
+
+
+ 11614
+
+
+ YES
+
+
+
+
+
+ 11615
+
+
+ YES
+
+
+
+
+
+ 11616
+
+
+ YES
+
+
+
+
+
+ 11617
+
+
+ YES
+
+
+
+
+
+ 11618
+
+
+ YES
+
+
+
+
+
+ 11619
+
+
+ YES
+
+
+
+
+
+ 11620
+
+
+ YES
+
+
+
+
+
+ 11621
+
+
+ YES
+
+
+
+
+
+ 11622
+
+
+ YES
+
+
+
+
+
+ 11623
+
+
+ YES
+
+
+
+
+
+ 11624
+
+
+ YES
+
+
+
+
+
+ 11625
+
+
+ YES
+
+
+
+
+
+ 11626
+
+
+ YES
+
+
+
+
+
+ 11627
+
+
+ YES
+
+
+
+
+
+ 11628
+
+
+ YES
+
+
+
+
+
+ 11629
+
+
+ YES
+
+
+
+
+
+ 11630
+
+
+ YES
+
+
+
+
+
+ 11631
+
+
+ YES
+
+
+
+
+
+ 11632
+
+
+ YES
+
+
+
+
+
+ 11633
+
+
+ YES
+
+
+
+
+
+ 11634
+
+
+ YES
+
+
+
+
+
+ 11635
+
+
+ YES
+
+
+
+
+
+ 11636
+
+
+ YES
+
+
+
+
+
+ 11637
+
+
+ YES
+
+
+
+
+
+ 11638
+
+
+ YES
+
+
+
+
+
+ 11639
+
+
+ YES
+
+
+
+
+
+ 11640
+
+
+ YES
+
+
+
+
+
+ 11641
+
+
+ YES
+
+
+
+
+
+ 11642
+
+
+ YES
+
+
+
+
+
+ 11643
+
+
+ YES
+
+
+
+
+
+ 11644
+
+
+ YES
+
+
+
+
+
+ 11645
+
+
+ YES
+
+
+
+
+
+ 11646
+
+
+ YES
+
+
+
+
+
+ 11647
+
+
+
+
+ 11648
+
+
+
+
+ 11649
+
+
+
+
+ 11650
+
+
+ YES
+
+
+
+
+
+ 11651
+
+
+
+
+ 11652
+
+
+ YES
+
+
+
+
+
+ 11653
+
+
+
+
+ 11654
+
+
+ YES
+
+
+
+
+
+ 11655
+
+
+
+
+ 11656
+
+
+ YES
+
+
+
+
+
+ 11657
+
+
+
+
+ 11658
+
+
+
+
+ 11659
+
+
+
+
+ 11660
+
+
+
+
+ 11661
+
+
+
+
+ 11662
+
+
+ YES
+
+
+
+
+
+ 11663
+
+
+
+
+ 11664
+
+
+ YES
+
+
+
+
+
+ 11665
+
+
+
+
+ 11666
+
+
+ YES
+
+
+
+
+
+ 11667
+
+
+
+
+ 11668
+
+
+ YES
+
+
+
+
+
+ 11669
+
+
+
+
+ 11670
+
+
+
+
+ 11671
+
+
+
+
+ 11672
+
+
+
+
+ 11673
+
+
+
+
+ 11674
+
+
+ YES
+
+
+
+
+
+ 11675
+
+
+
+
+ 11676
+
+
+ YES
+
+
+
+
+
+ 11677
+
+
+
+
+ 11678
+
+
+ YES
+
+
+
+
+
+ 11679
+
+
+
+
+ 11680
+
+
+ YES
+
+
+
+
+
+ 11681
+
+
+
+
+ 11682
+
+
+
+
+ 11683
+
+
+
+
+ 11684
+
+
+
+
+ 11685
+
+
+
+
+ 11686
+
+
+ YES
+
+
+
+
+
+ 11687
+
+
+
+
+ 11688
+
+
+ YES
+
+
+
+
+
+ 11689
+
+
+
+
+ 11690
+
+
+ YES
+
+
+
+
+
+ 11691
+
+
+
+
+ 11692
+
+
+ YES
+
+
+
+
+
+ 11693
+
+
+
+
+ 11694
+
+
+
+
+ 11695
+
+
+
+
+ 11696
+
+
+
+
+ 11697
+
+
+
+
+ 11757
+
+
+ YES
+
+
+
+
+
+ 11758
+
+
+ YES
+
+
+
+
+
+ 11759
+
+
+ YES
+
+
+
+
+
+ 11760
+
+
+
+
+ 11764
+
+
+ YES
+
+
+
+
+
+ 11765
+
+
+
+
+ 11767
+
+
+ YES
+
+
+
+
+
+ 11768
+
+
+
+
+ 11771
+
+
+ YES
+
+
+
+
+
+ 11772
+
+
+ YES
+
+
+
+
+
+ 11773
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 11774
+
+
+
+
+ 11775
+
+
+
+
+ 11776
+
+
+
+
+ 11777
+
+
+
+
+ 11778
+
+
+
+
+ 11779
+
+
+
+
+ 11783
+
+
+ YES
+
+
+
+
+
+ 11784
+
+
+
+
+ 11785
+
+
+ YES
+
+
+
+
+
+ 11786
+
+
+
+
+ 11787
+
+
+ YES
+
+
+
+
+
+ 11788
+
+
+
+
+ 11789
+
+
+ YES
+
+
+
+
+
+
+
+ 11790
+
+
+ YES
+
+
+
+
+
+ 11791
+
+
+ YES
+
+
+
+
+
+ 11792
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11793
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11794
+
+
+ YES
+
+
+
+
+
+ 11795
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 11796
+
+
+ YES
+
+
+
+
+
+ 11797
+
+
+
+
+ 11798
+
+
+ YES
+
+
+
+
+
+ 11799
+
+
+
+
+ 11800
+
+
+ YES
+
+
+
+
+
+ 11801
+
+
+
+
+ 11802
+
+
+ YES
+
+
+
+
+
+ 11803
+
+
+
+
+ 11804
+
+
+ YES
+
+
+
+
+
+ 11805
+
+
+
+
+ 11806
+
+
+ YES
+
+
+
+
+
+ 11807
+
+
+
+
+ 11808
+
+
+ YES
+
+
+
+
+
+ 11809
+
+
+
+
+ 11810
+
+
+ YES
+
+
+
+
+
+ 11811
+
+
+
+
+ 11818
+
+
+ YES
+
+
+
+
+
+ 11819
+
+
+ YES
+
+
+
+
+
+ 11820
+
+
+ YES
+
+
+
+
+
+ 11821
+
+
+
+
+ 11822
+
+
+
+
+ 11823
+
+
+
+
+ 11824
+
+
+ YES
+
+
+
+
+
+ 11825
+
+
+ YES
+
+
+
+
+
+ 11826
+
+
+ YES
+
+
+
+
+
+ 11827
+
+
+
+
+ 11828
+
+
+
+
+ 11829
+
+
+
+
+ 11830
+
+
+ YES
+
+
+
+
+
+ 11831
+
+
+ YES
+
+
+
+
+
+ 11832
+
+
+ YES
+
+
+
+
+
+ 11833
+
+
+
+
+ 11834
+
+
+
+
+ 11835
+
+
+
+
+ 11836
+
+
+ YES
+
+
+
+
+
+ 11837
+
+
+
+
+ 11838
+
+
+ YES
+
+
+
+
+
+ 11839
+
+
+ YES
+
+
+
+
+
+ 11840
+
+
+
+
+ 11841
+
+
+ YES
+
+
+
+
+
+ 11842
+
+
+ YES
+
+
+
+
+
+ 11843
+
+
+
+
+ 11844
+
+
+ YES
+
+
+
+
+
+ 11845
+
+
+ YES
+
+
+
+
+
+ 11846
+
+
+
+
+ 11847
+
+
+ YES
+
+
+
+
+
+ 11848
+
+
+ YES
+
+
+
+
+
+ 11849
+
+
+
+
+ 11850
+
+
+ YES
+
+
+
+
+
+ 11851
+
+
+
+
+ 11852
+
+
+ YES
+
+
+
+
+
+ 11853
+
+
+ YES
+
+
+
+
+
+ 11854
+
+
+ YES
+
+
+
+
+
+ 11855
+
+
+ YES
+
+
+
+
+
+ 11856
+
+
+ YES
+
+
+
+
+
+ 11857
+
+
+
+
+ 11858
+
+
+ YES
+
+
+
+
+
+ 11859
+
+
+
+
+ 11860
+
+
+ YES
+
+
+
+
+
+ 11861
+
+
+
+
+ 11862
+
+
+ YES
+
+
+
+
+
+ 11863
+
+
+
+
+ 11864
+
+
+ YES
+
+
+
+
+
+ 11865
+
+
+ YES
+
+
+
+
+
+ 11866
+
+
+ YES
+
+
+
+
+
+ 11867
+
+
+ YES
+
+
+
+
+
+ 11868
+
+
+ YES
+
+
+
+
+
+ 11869
+
+
+
+
+ 11870
+
+
+ YES
+
+
+
+
+
+ 11871
+
+
+
+
+ 11872
+
+
+ YES
+
+
+
+
+
+ 11873
+
+
+
+
+ 11874
+
+
+ YES
+
+
+
+
+
+ 11875
+
+
+
+
+ 11876
+
+
+ YES
+
+
+
+
+
+ 11877
+
+
+ YES
+
+
+
+
+
+ 11878
+
+
+ YES
+
+
+
+
+
+ 11879
+
+
+ YES
+
+
+
+
+
+ 11880
+
+
+ YES
+
+
+
+
+
+ 11881
+
+
+
+
+ 11882
+
+
+ YES
+
+
+
+
+
+ 11883
+
+
+
+
+ 11884
+
+
+ YES
+
+
+
+
+
+ 11885
+
+
+
+
+ 11886
+
+
+ YES
+
+
+
+
+
+ 11887
+
+
+
+
+ 11888
+
+
+ YES
+
+
+
+
+
+ 11889
+
+
+ YES
+
+
+
+
+
+ 11890
+
+
+ YES
+
+
+
+
+
+ 11891
+
+
+ YES
+
+
+
+
+
+ 11892
+
+
+ YES
+
+
+
+
+
+ 11893
+
+
+ YES
+
+
+
+
+
+ 11894
+
+
+ YES
+
+
+
+
+
+ 11895
+
+
+ YES
+
+
+
+
+
+ 11896
+
+
+ YES
+
+
+
+
+
+ 11897
+
+
+ YES
+
+
+
+
+
+ 11898
+
+
+ YES
+
+
+
+
+
+ 11899
+
+
+ YES
+
+
+
+
+
+ 11900
+
+
+ YES
+
+
+
+
+
+ 11901
+
+
+ YES
+
+
+
+
+
+ 11902
+
+
+ YES
+
+
+
+
+
+ 11903
+
+
+ YES
+
+
+
+
+
+ 11904
+
+
+ YES
+
+
+
+
+
+ 11905
+
+
+ YES
+
+
+
+
+
+ 11906
+
+
+ YES
+
+
+
+
+
+ 11907
+
+
+ YES
+
+
+
+
+
+ 11908
+
+
+ YES
+
+
+
+
+
+ 11909
+
+
+ YES
+
+
+
+
+
+ 11910
+
+
+ YES
+
+
+
+
+
+ 11911
+
+
+ YES
+
+
+
+
+
+ 11912
+
+
+ YES
+
+
+
+
+
+ 11913
+
+
+ YES
+
+
+
+
+
+ 11914
+
+
+ YES
+
+
+
+
+
+ 11915
+
+
+ YES
+
+
+
+
+
+ 11916
+
+
+ YES
+
+
+
+
+
+ 11917
+
+
+ YES
+
+
+
+
+
+ 11918
+
+
+ YES
+
+
+
+
+
+ 11919
+
+
+ YES
+
+
+
+
+
+ 11920
+
+
+ YES
+
+
+
+
+
+ 11921
+
+
+ YES
+
+
+
+
+
+ 11922
+
+
+ YES
+
+
+
+
+
+ 11923
+
+
+
+
+ 11924
+
+
+ YES
+
+
+
+
+
+ 11925
+
+
+
+
+ 11926
+
+
+ YES
+
+
+
+
+
+ 11927
+
+
+
+
+ 11928
+
+
+ YES
+
+
+
+
+
+ 11929
+
+
+
+
+ 11930
+
+
+ YES
+
+
+
+
+
+ 11931
+
+
+
+
+ 11932
+
+
+ YES
+
+
+
+
+
+ 11933
+
+
+
+
+ 11934
+
+
+ YES
+
+
+
+
+
+ 11935
+
+
+
+
+ 11936
+
+
+ YES
+
+
+
+
+
+ 11937
+
+
+
+
+ 11938
+
+
+ YES
+
+
+
+
+
+ 11939
+
+
+
+
+ 11940
+
+
+ YES
+
+
+
+
+
+ 11941
+
+
+
+
+ 11942
+
+
+ YES
+
+
+
+
+
+ 11943
+
+
+
+
+ 11944
+
+
+ YES
+
+
+
+
+
+ 11945
+
+
+
+
+ 11946
+
+
+ YES
+
+
+
+
+
+ 11947
+
+
+
+
+ 11948
+
+
+ YES
+
+
+
+
+
+ 11949
+
+
+
+
+ 11950
+
+
+ YES
+
+
+
+
+
+ 11951
+
+
+
+
+ 11952
+
+
+ YES
+
+
+
+
+
+ 11953
+
+
+
+
+ 11954
+
+
+ YES
+
+
+
+
+
+ 11955
+
+
+
+
+ 11956
+
+
+
+
+ 11957
+
+
+
+
+ 11958
+
+
+
+
+ 11959
+
+
+
+
+ 11960
+
+
+
+
+ 11961
+
+
+
+
+ 11962
+
+
+
+
+ 11963
+
+
+
+
+ 11964
+
+
+
+
+ 11965
+
+
+
+
+ 11966
+
+
+
+
+ 11967
+
+
+
+
+ 11968
+
+
+
+
+ 11969
+
+
+
+
+ 11970
+
+
+
+
+ 11971
+
+
+
+
+ 11972
+
+
+
+
+ 11973
+
+
+
+
+ 11974
+
+
+ YES
+
+
+
+
+
+ 11975
+
+
+ YES
+
+
+
+
+
+ 11976
+
+
+ YES
+
+
+
+
+
+ 11977
+
+
+ YES
+
+
+
+
+
+ 11978
+
+
+ YES
+
+
+
+
+
+ 11979
+
+
+ YES
+
+
+
+
+
+ 11980
+
+
+ YES
+
+
+
+
+
+ 11981
+
+
+ YES
+
+
+
+
+
+ 11982
+
+
+ YES
+
+
+
+
+
+ 11983
+
+
+ YES
+
+
+
+
+
+ 11984
+
+
+ YES
+
+
+
+
+
+ 11985
+
+
+ YES
+
+
+
+
+
+ 11986
+
+
+ YES
+
+
+
+
+
+ 11987
+
+
+ YES
+
+
+
+
+
+ 11988
+
+
+ YES
+
+
+
+
+
+ 11989
+
+
+ YES
+
+
+
+
+
+ 11990
+
+
+ YES
+
+
+
+
+
+ 11991
+
+
+ YES
+
+
+
+
+
+ 11992
+
+
+ YES
+
+
+
+
+
+ 11993
+
+
+ YES
+
+
+
+
+
+ 11994
+
+
+ YES
+
+
+
+
+
+ 11995
+
+
+ YES
+
+
+
+
+
+ 11996
+
+
+ YES
+
+
+
+
+
+ 11997
+
+
+ YES
+
+
+
+
+
+ 11998
+
+
+ YES
+
+
+
+
+
+ 11999
+
+
+ YES
+
+
+
+
+
+ 12000
+
+
+ YES
+
+
+
+
+
+ 12001
+
+
+ YES
+
+
+
+
+
+ 12002
+
+
+ YES
+
+
+
+
+
+ 12003
+
+
+ YES
+
+
+
+
+
+ 12004
+
+
+ YES
+
+
+
+
+
+ 12005
+
+
+ YES
+
+
+
+
+
+ 12006
+
+
+ YES
+
+
+
+
+
+ 12007
+
+
+ YES
+
+
+
+
+
+ 12008
+
+
+ YES
+
+
+
+
+
+ 12009
+
+
+
+
+ 12010
+
+
+ YES
+
+
+
+
+
+ 12011
+
+
+
+
+ 12012
+
+
+ YES
+
+
+
+
+
+ 12013
+
+
+
+
+ 12014
+
+
+ YES
+
+
+
+
+
+ 12015
+
+
+
+
+ 12016
+
+
+ YES
+
+
+
+
+
+ 12017
+
+
+
+
+ 12018
+
+
+ YES
+
+
+
+
+
+ 12019
+
+
+
+
+ 12020
+
+
+ YES
+
+
+
+
+
+ 12021
+
+
+
+
+ 12022
+
+
+ YES
+
+
+
+
+
+ 12023
+
+
+
+
+ 12024
+
+
+ YES
+
+
+
+
+
+ 12025
+
+
+
+
+ 12026
+
+
+ YES
+
+
+
+
+
+ 12027
+
+
+
+
+ 12028
+
+
+ YES
+
+
+
+
+
+ 12029
+
+
+
+
+ 12030
+
+
+ YES
+
+
+
+
+
+ 12031
+
+
+
+
+ 12032
+
+
+ YES
+
+
+
+
+
+ 12033
+
+
+
+
+ 12034
+
+
+ YES
+
+
+
+
+
+ 12035
+
+
+
+
+ 12036
+
+
+ YES
+
+
+
+
+
+ 12037
+
+
+
+
+ 12038
+
+
+ YES
+
+
+
+
+
+ 12039
+
+
+
+
+ 12040
+
+
+ YES
+
+
+
+
+
+ 12041
+
+
+
+
+ 12042
+
+
+
+
+ 12043
+
+
+
+
+ 12044
+
+
+
+
+ 12045
+
+
+
+
+ 12046
+
+
+
+
+ 12047
+
+
+
+
+ 12048
+
+
+
+
+ 12049
+
+
+
+
+ 12050
+
+
+
+
+ 12051
+
+
+
+
+ 12052
+
+
+
+
+ 12053
+
+
+
+
+ 12054
+
+
+
+
+ 12055
+
+
+
+
+ 12056
+
+
+
+
+ 12057
+
+
+
+
+ 12058
+
+
+
+
+ 12059
+
+
+
+
+ 12144
+
+
+ YES
+
+
+
+
+
+ 12145
+
+
+
+
+ 12146
+
+
+ YES
+
+
+
+
+
+ 12147
+
+
+ YES
+
+
+
+
+
+ 12148
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 12149
+
+
+
+
+ 12150
+
+
+
+
+ 12151
+
+
+
+
+ 12152
+
+
+
+
+ 12153
+
+
+
+
+ 12158
+
+
+ YES
+
+
+
+
+
+ 12159
+
+
+
+
+ 12162
+
+
+ YES
+
+
+
+
+
+ 12163
+
+
+ YES
+
+
+
+
+
+ 12164
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 12165
+
+
+
+
+ 12166
+
+
+
+
+ 12167
+
+
+
+
+ 12168
+
+
+
+
+ 12169
+
+
+
+
+
+
+ YES
+
+ YES
+ -1.IBPluginDependency
+ -2.IBPluginDependency
+ -3.IBPluginDependency
+ 10002.IBPluginDependency
+ 10003.IBPluginDependency
+ 10004.IBPluginDependency
+ 10005.IBPluginDependency
+ 10006.IBNumberFormatterBehaviorMetadataKey
+ 10006.IBNumberFormatterLocalizesFormatMetadataKey
+ 10006.IBPluginDependency
+ 10015.IBPluginDependency
+ 10020.IBPluginDependency
+ 10021.IBPluginDependency
+ 10026.IBPluginDependency
+ 10027.IBPluginDependency
+ 10029.IBPluginDependency
+ 10032.IBPluginDependency
+ 10034.IBPluginDependency
+ 10036.IBEditorWindowLastContentRect
+ 10036.IBPersistedLastKnownCanvasPosition
+ 10036.IBPluginDependency
+ 10036.IBWindowTemplateEditedContentRect
+ 10036.NSWindowTemplate.visibleAtLaunch
+ 10037.IBNSViewMetadataGestureRecognizers
+ 10037.IBPluginDependency
+ 10043.IBPluginDependency
+ 10043.notes
+ 10044.IBPluginDependency
+ 10047.IBPluginDependency
+ 10060.IBPluginDependency
+ 10061.IBPluginDependency
+ 10063.IBAttributePlaceholdersKey
+ 10063.IBPluginDependency
+ 10064.IBPluginDependency
+ 10067.IBPluginDependency
+ 10068.IBPluginDependency
+ 10069.IBNumberFormatterBehaviorMetadataKey
+ 10069.IBNumberFormatterLocalizesFormatMetadataKey
+ 10069.IBPluginDependency
+ 10072.IBPluginDependency
+ 10073.IBPluginDependency
+ 10074.IBPluginDependency
+ 10075.IBPluginDependency
+ 10076.IBPluginDependency
+ 10077.IBPluginDependency
+ 10079.IBNSViewMetadataGestureRecognizers
+ 10079.IBPluginDependency
+ 10081.IBPluginDependency
+ 10081.notes
+ 10082.IBAttributePlaceholdersKey
+ 10082.IBPluginDependency
+ 10083.IBPluginDependency
+ 10084.IBPluginDependency
+ 10085.IBPluginDependency
+ 10086.IBPluginDependency
+ 10087.IBPluginDependency
+ 10088.IBPluginDependency
+ 10089.IBPluginDependency
+ 10090.IBPluginDependency
+ 10091.IBNumberFormatterBehaviorMetadataKey
+ 10091.IBNumberFormatterLocalizesFormatMetadataKey
+ 10091.IBPluginDependency
+ 10092.IBPluginDependency
+ 10093.IBPluginDependency
+ 10108.IBPluginDependency
+ 10108.IBViewBoundsToFrameTransform
+ 10109.IBPluginDependency
+ 10110.IBAttributePlaceholdersKey
+ 10110.IBPluginDependency
+ 10111.IBPluginDependency
+ 10112.IBNumberFormatterBehaviorMetadataKey
+ 10112.IBNumberFormatterLocalizesFormatMetadataKey
+ 10112.IBPluginDependency
+ 10113.IBPluginDependency
+ 10113.IBViewBoundsToFrameTransform
+ 10114.IBPluginDependency
+ 10115.IBPluginDependency
+ 10116.IBPluginDependency
+ 10117.IBAttributePlaceholdersKey
+ 10117.IBPluginDependency
+ 10118.IBPluginDependency
+ 10119.IBNumberFormatterBehaviorMetadataKey
+ 10119.IBNumberFormatterLocalizesFormatMetadataKey
+ 10119.IBPluginDependency
+ 10120.IBPluginDependency
+ 10121.IBPluginDependency
+ 10135.IBPluginDependency
+ 10136.IBPluginDependency
+ 10140.IBPluginDependency
+ 10141.IBPluginDependency
+ 10142.IBEditorWindowLastContentRect
+ 10142.IBPluginDependency
+ 10143.IBPluginDependency
+ 10144.IBPluginDependency
+ 10145.IBPluginDependency
+ 10146.IBPluginDependency
+ 10147.IBPluginDependency
+ 10148.IBPluginDependency
+ 10166.IBPluginDependency
+ 10166.IBViewBoundsToFrameTransform
+ 10167.IBPluginDependency
+ 10168.IBPluginDependency
+ 10169.IBPluginDependency
+ 10169.IBViewBoundsToFrameTransform
+ 10170.IBPluginDependency
+ 10171.IBPluginDependency
+ 10171.IBViewBoundsToFrameTransform
+ 10172.IBPluginDependency
+ 10173.IBPluginDependency
+ 10173.IBViewBoundsToFrameTransform
+ 10174.IBPluginDependency
+ 10175.IBPluginDependency
+ 10175.IBViewBoundsToFrameTransform
+ 10176.IBPluginDependency
+ 10177.IBPluginDependency
+ 10177.IBViewBoundsToFrameTransform
+ 10178.IBPluginDependency
+ 10179.IBPluginDependency
+ 10179.IBViewBoundsToFrameTransform
+ 10180.IBPluginDependency
+ 10190.IBPluginDependency
+ 10191.IBPluginDependency
+ 10191.IBViewBoundsToFrameTransform
+ 10192.IBPluginDependency
+ 10196.IBPluginDependency
+ 10196.IBViewBoundsToFrameTransform
+ 10197.IBPluginDependency
+ 10201.IBPluginDependency
+ 10203.IBPluginDependency
+ 10205.IBPluginDependency
+ 10205.IBViewBoundsToFrameTransform
+ 10206.IBPluginDependency
+ 10213.IBAttributePlaceholdersKey
+ 10213.IBPluginDependency
+ 10213.IBViewBoundsToFrameTransform
+ 10214.IBPluginDependency
+ 10218.IBAttributePlaceholdersKey
+ 10218.IBPluginDependency
+ 10218.IBViewBoundsToFrameTransform
+ 10219.IBPluginDependency
+ 10221.IBAttributePlaceholdersKey
+ 10221.IBPluginDependency
+ 10221.IBViewBoundsToFrameTransform
+ 10222.IBAttributePlaceholdersKey
+ 10222.IBPluginDependency
+ 10222.IBViewBoundsToFrameTransform
+ 10223.IBPluginDependency
+ 10224.IBPluginDependency
+ 10225.IBEditorWindowLastContentRect
+ 10225.IBPluginDependency
+ 10227.IBAttributePlaceholdersKey
+ 10227.IBPluginDependency
+ 10228.IBAttributePlaceholdersKey
+ 10228.IBPluginDependency
+ 10229.IBAttributePlaceholdersKey
+ 10229.IBPluginDependency
+ 10236.IBPluginDependency
+ 10236.IBViewBoundsToFrameTransform
+ 10237.IBPluginDependency
+ 10239.IBAttributePlaceholdersKey
+ 10239.IBPluginDependency
+ 10239.IBViewBoundsToFrameTransform
+ 10240.IBPluginDependency
+ 10241.IBNumberFormatterBehaviorMetadataKey
+ 10241.IBNumberFormatterLocalizesFormatMetadataKey
+ 10241.IBPluginDependency
+ 10243.IBAttributePlaceholdersKey
+ 10243.IBPluginDependency
+ 10243.IBViewBoundsToFrameTransform
+ 10244.IBPluginDependency
+ 10247.IBAttributePlaceholdersKey
+ 10247.IBPluginDependency
+ 10247.IBViewBoundsToFrameTransform
+ 10248.IBPluginDependency
+ 10251.IBPluginDependency
+ 10252.IBPluginDependency
+ 10253.IBPluginDependency
+ 10261.IBAttributePlaceholdersKey
+ 10261.IBPluginDependency
+ 10262.IBPluginDependency
+ 10264.IBAttributePlaceholdersKey
+ 10264.IBPluginDependency
+ 10265.IBPluginDependency
+ 10267.IBPluginDependency
+ 10268.IBPluginDependency
+ 10279.IBPluginDependency
+ 10280.IBPluginDependency
+ 10281.IBAttributePlaceholdersKey
+ 10281.IBPluginDependency
+ 10282.IBPluginDependency
+ 10283.IBEditorWindowLastContentRect
+ 10283.IBPluginDependency
+ 10284.IBPluginDependency
+ 10285.IBPluginDependency
+ 10286.IBPluginDependency
+ 10287.IBPluginDependency
+ 10288.IBPluginDependency
+ 10289.IBAttributePlaceholdersKey
+ 10289.IBPluginDependency
+ 10290.IBPluginDependency
+ 10291.IBEditorWindowLastContentRect
+ 10291.IBPluginDependency
+ 10292.IBPluginDependency
+ 10293.IBPluginDependency
+ 10294.IBPluginDependency
+ 10298.IBPluginDependency
+ 10299.IBPluginDependency
+ 10299.IBViewBoundsToFrameTransform
+ 10300.IBPluginDependency
+ 10302.IBPluginDependency
+ 10302.IBViewBoundsToFrameTransform
+ 10303.IBPluginDependency
+ 10305.IBPluginDependency
+ 10305.IBViewBoundsToFrameTransform
+ 10306.IBPluginDependency
+ 10308.IBPluginDependency
+ 10309.IBEditorWindowLastContentRect
+ 10309.IBPluginDependency
+ 10310.IBPluginDependency
+ 10311.IBPluginDependency
+ 10312.IBPluginDependency
+ 10313.IBPluginDependency
+ 10314.IBPluginDependency
+ 10315.IBPluginDependency
+ 10316.IBPluginDependency
+ 10317.IBPluginDependency
+ 10318.IBPluginDependency
+ 1034.IBPluginDependency
+ 10342.IBPluginDependency
+ 1035.IBPluginDependency
+ 10350.IBPluginDependency
+ 10350.IBViewBoundsToFrameTransform
+ 10351.IBPluginDependency
+ 10352.IBEditorWindowLastContentRect
+ 10352.IBPluginDependency
+ 10353.IBAttributePlaceholdersKey
+ 10353.IBPluginDependency
+ 10354.IBAttributePlaceholdersKey
+ 10354.IBPluginDependency
+ 10355.IBAttributePlaceholdersKey
+ 10355.IBPluginDependency
+ 10356.IBPluginDependency
+ 10356.IBViewBoundsToFrameTransform
+ 10357.IBPluginDependency
+ 10358.IBAttributePlaceholdersKey
+ 10358.IBPluginDependency
+ 10359.IBPluginDependency
+ 1036.IBPluginDependency
+ 10360.IBPluginDependency
+ 10361.IBPluginDependency
+ 10362.IBPluginDependency
+ 10363.IBEditorWindowLastContentRect
+ 10363.IBPluginDependency
+ 10364.IBAttributePlaceholdersKey
+ 10364.IBPluginDependency
+ 10365.IBAttributePlaceholdersKey
+ 10365.IBPluginDependency
+ 10366.IBAttributePlaceholdersKey
+ 10366.IBPluginDependency
+ 10367.IBAttributePlaceholdersKey
+ 10367.IBPluginDependency
+ 1037.IBPluginDependency
+ 10370.IBPluginDependency
+ 10370.IBViewBoundsToFrameTransform
+ 10371.IBPluginDependency
+ 10372.IBEditorWindowLastContentRect
+ 10372.IBPluginDependency
+ 10373.IBAttributePlaceholdersKey
+ 10373.IBPluginDependency
+ 10374.IBAttributePlaceholdersKey
+ 10374.IBPluginDependency
+ 10375.IBPluginDependency
+ 10376.IBPluginDependency
+ 10377.IBPluginDependency
+ 10378.IBPluginDependency
+ 10378.IBViewBoundsToFrameTransform
+ 10379.IBPluginDependency
+ 1038.IBPluginDependency
+ 10380.IBEditorWindowLastContentRect
+ 10380.IBPluginDependency
+ 10381.IBAttributePlaceholdersKey
+ 10381.IBPluginDependency
+ 10382.IBAttributePlaceholdersKey
+ 10382.IBPluginDependency
+ 10386.IBPluginDependency
+ 10386.IBViewBoundsToFrameTransform
+ 10387.IBPluginDependency
+ 10388.IBPluginDependency
+ 10388.IBViewBoundsToFrameTransform
+ 10389.IBPluginDependency
+ 1039.IBPluginDependency
+ 10390.IBPluginDependency
+ 10390.IBViewBoundsToFrameTransform
+ 10391.IBPluginDependency
+ 10397.IBPluginDependency
+ 10397.IBSegmentedControlTracker.RoundRobinState
+ 10397.IBSegmentedControlTracker.WasGrowing
+ 10397.IBViewBoundsToFrameTransform
+ 10398.IBPluginDependency
+ 10398.IBSegmentedControlInspectorSelectedSegmentMetadataKey
+ 1040.IBPluginDependency
+ 10401.IBPluginDependency
+ 10401.IBViewBoundsToFrameTransform
+ 10402.IBPluginDependency
+ 10403.IBEditorWindowLastContentRect
+ 10403.IBPluginDependency
+ 10404.IBPluginDependency
+ 10405.IBPluginDependency
+ 10406.IBPluginDependency
+ 10407.IBPluginDependency
+ 1041.IBPluginDependency
+ 10410.IBPluginDependency
+ 10411.IBPluginDependency
+ 10412.IBPluginDependency
+ 10412.IBViewBoundsToFrameTransform
+ 10413.IBPluginDependency
+ 10414.IBNumberFormatterBehaviorMetadataKey
+ 10414.IBNumberFormatterLocalizesFormatMetadataKey
+ 10414.IBPluginDependency
+ 10418.IBPluginDependency
+ 10419.IBPluginDependency
+ 10421.IBPluginDependency
+ 10422.IBPluginDependency
+ 10423.IBPluginDependency
+ 10424.IBPluginDependency
+ 10436.IBPluginDependency
+ 10437.IBPluginDependency
+ 10437.IBViewBoundsToFrameTransform
+ 10438.IBPluginDependency
+ 10438.IBViewBoundsToFrameTransform
+ 10439.IBPluginDependency
+ 10439.IBViewBoundsToFrameTransform
+ 10440.IBPluginDependency
+ 10440.IBViewBoundsToFrameTransform
+ 10441.IBPluginDependency
+ 10441.IBViewBoundsToFrameTransform
+ 10442.IBPluginDependency
+ 10442.IBViewBoundsToFrameTransform
+ 10443.IBPluginDependency
+ 10443.IBViewBoundsToFrameTransform
+ 10444.IBPluginDependency
+ 10444.IBViewBoundsToFrameTransform
+ 10445.IBPluginDependency
+ 10445.IBViewBoundsToFrameTransform
+ 10446.IBPluginDependency
+ 10447.IBPluginDependency
+ 10447.IBViewBoundsToFrameTransform
+ 10448.IBPluginDependency
+ 10462.IBPluginDependency
+ 10462.IBViewBoundsToFrameTransform
+ 10463.IBPluginDependency
+ 10464.IBPluginDependency
+ 10465.IBPluginDependency
+ 10466.IBPluginDependency
+ 10467.IBPluginDependency
+ 10468.IBPluginDependency
+ 10469.IBPluginDependency
+ 10469.IBViewBoundsToFrameTransform
+ 10470.IBPluginDependency
+ 10470.IBViewBoundsToFrameTransform
+ 10471.IBPluginDependency
+ 10472.IBPluginDependency
+ 10472.IBViewBoundsToFrameTransform
+ 10473.IBPluginDependency
+ 10495.IBPluginDependency
+ 10495.IBViewBoundsToFrameTransform
+ 10498.IBPluginDependency
+ 10499.IBPluginDependency
+ 10505.IBPluginDependency
+ 10508.IBPluginDependency
+ 10509.IBPluginDependency
+ 10521.IBPluginDependency
+ 10522.IBEditorWindowLastContentRect
+ 10522.IBPluginDependency
+ 10522.IBWindowTemplateEditedContentRect
+ 10522.NSWindowTemplate.visibleAtLaunch
+ 10523.IBPluginDependency
+ 10524.IBPluginDependency
+ 10524.IBViewBoundsToFrameTransform
+ 10525.IBPluginDependency
+ 10526.IBPluginDependency
+ 10526.IBViewBoundsToFrameTransform
+ 10527.IBPluginDependency
+ 10528.IBPluginDependency
+ 10528.IBViewBoundsToFrameTransform
+ 10529.IBPluginDependency
+ 10530.IBPluginDependency
+ 10531.IBPluginDependency
+ 10540.IBEditorWindowLastContentRect
+ 10540.IBPluginDependency
+ 10540.IBWindowTemplateEditedContentRect
+ 10540.NSWindowTemplate.visibleAtLaunch
+ 10540.windowTemplate.hasMaxSize
+ 10540.windowTemplate.hasMinSize
+ 10540.windowTemplate.maxSize
+ 10540.windowTemplate.minSize
+ 10541.IBPluginDependency
+ 10592.IBPluginDependency
+ 10592.IBViewBoundsToFrameTransform
+ 10593.IBPluginDependency
+ 10617.CustomClassName
+ 10617.IBPluginDependency
+ 10617.IBViewBoundsToFrameTransform
+ 10618.IBPluginDependency
+ 10619.IBPluginDependency
+ 10619.IBViewBoundsToFrameTransform
+ 10620.IBPluginDependency
+ 10624.IBEditorWindowLastContentRect
+ 10624.IBPluginDependency
+ 10624.IBViewBoundsToFrameTransform
+ 10625.IBPluginDependency
+ 10630.IBPluginDependency
+ 10630.IBViewBoundsToFrameTransform
+ 10631.IBPluginDependency
+ 10676.IBPluginDependency
+ 10676.IBViewBoundsToFrameTransform
+ 10690.IBPluginDependency
+ 10690.IBViewBoundsToFrameTransform
+ 10691.IBPluginDependency
+ 10692.IBPluginDependency
+ 10693.IBPluginDependency
+ 10712.IBPluginDependency
+ 10712.IBViewBoundsToFrameTransform
+ 10713.IBPluginDependency
+ 10714.IBPluginDependency
+ 10716.IBPluginDependency
+ 10716.IBViewBoundsToFrameTransform
+ 10717.IBPluginDependency
+ 10718.IBEditorWindowLastContentRect
+ 10718.IBPluginDependency
+ 10719.IBPluginDependency
+ 10720.IBPluginDependency
+ 10721.IBPluginDependency
+ 10722.IBPluginDependency
+ 10723.IBPluginDependency
+ 10724.IBPluginDependency
+ 10725.IBPluginDependency
+ 10725.IBViewBoundsToFrameTransform
+ 10726.IBPluginDependency
+ 10727.IBPluginDependency
+ 10727.IBViewBoundsToFrameTransform
+ 10728.IBPluginDependency
+ 10729.IBEditorWindowLastContentRect
+ 10729.IBPluginDependency
+ 10730.IBPluginDependency
+ 10731.IBPluginDependency
+ 10732.IBPluginDependency
+ 10733.IBPluginDependency
+ 10734.IBPluginDependency
+ 10741.IBPluginDependency
+ 10741.IBViewBoundsToFrameTransform
+ 10742.IBPluginDependency
+ 10743.IBEditorWindowLastContentRect
+ 10743.IBPluginDependency
+ 10744.IBPluginDependency
+ 10745.IBPluginDependency
+ 10746.IBPluginDependency
+ 10747.IBPluginDependency
+ 10747.IBViewBoundsToFrameTransform
+ 10748.IBPluginDependency
+ 10749.IBEditorWindowLastContentRect
+ 10749.IBPluginDependency
+ 10750.IBPluginDependency
+ 10751.IBPluginDependency
+ 10752.IBPluginDependency
+ 10753.IBPluginDependency
+ 10754.IBPluginDependency
+ 10755.IBPluginDependency
+ 10756.IBPluginDependency
+ 10757.IBPluginDependency
+ 10758.IBPluginDependency
+ 10759.IBPluginDependency
+ 10760.IBPluginDependency
+ 10761.IBPluginDependency
+ 10762.IBPluginDependency
+ 10763.IBPluginDependency
+ 10764.IBPluginDependency
+ 10765.IBPluginDependency
+ 10766.IBPluginDependency
+ 10767.IBPluginDependency
+ 10768.IBPluginDependency
+ 10769.IBPluginDependency
+ 10770.IBPluginDependency
+ 10771.IBPluginDependency
+ 10772.IBPluginDependency
+ 10773.IBPluginDependency
+ 10774.IBPluginDependency
+ 10774.IBViewBoundsToFrameTransform
+ 10775.IBPluginDependency
+ 10776.IBPluginDependency
+ 10776.IBViewBoundsToFrameTransform
+ 10777.IBPluginDependency
+ 10777.IBViewBoundsToFrameTransform
+ 10778.IBPluginDependency
+ 10779.IBPluginDependency
+ 10779.IBViewBoundsToFrameTransform
+ 10780.IBPluginDependency
+ 10781.IBPluginDependency
+ 10781.IBViewBoundsToFrameTransform
+ 10782.IBPluginDependency
+ 10783.IBPluginDependency
+ 10783.IBViewBoundsToFrameTransform
+ 10784.IBPluginDependency
+ 10784.IBViewBoundsToFrameTransform
+ 10785.IBPluginDependency
+ 10785.IBViewBoundsToFrameTransform
+ 10786.IBPluginDependency
+ 10866.IBPluginDependency
+ 10866.IBViewBoundsToFrameTransform
+ 10873.IBPluginDependency
+ 10873.IBViewBoundsToFrameTransform
+ 10874.IBPluginDependency
+ 10874.IBViewBoundsToFrameTransform
+ 10875.IBPluginDependency
+ 10876.IBPluginDependency
+ 10877.IBEditorWindowLastContentRect
+ 10877.IBPluginDependency
+ 10881.IBPluginDependency
+ 10882.IBPluginDependency
+ 10883.IBPluginDependency
+ 10884.IBPluginDependency
+ 10884.IBViewBoundsToFrameTransform
+ 10885.IBPluginDependency
+ 10885.IBViewBoundsToFrameTransform
+ 10886.IBPluginDependency
+ 10887.IBPluginDependency
+ 10888.IBEditorWindowLastContentRect
+ 10888.IBPluginDependency
+ 10889.IBPluginDependency
+ 10890.IBPluginDependency
+ 10891.IBPluginDependency
+ 10892.IBPluginDependency
+ 10893.IBPluginDependency
+ 10893.IBViewBoundsToFrameTransform
+ 10894.IBPluginDependency
+ 10894.IBViewBoundsToFrameTransform
+ 10895.IBPluginDependency
+ 10896.IBPluginDependency
+ 10897.IBEditorWindowLastContentRect
+ 10897.IBPluginDependency
+ 10898.IBPluginDependency
+ 10899.IBPluginDependency
+ 10900.IBPluginDependency
+ 10901.IBPluginDependency
+ 10902.IBPluginDependency
+ 10903.IBEditorWindowLastContentRect
+ 10903.IBPluginDependency
+ 10903.IBWindowTemplateEditedContentRect
+ 10903.NSWindowTemplate.visibleAtLaunch
+ 10903.windowTemplate.hasMaxSize
+ 10903.windowTemplate.hasMinSize
+ 10903.windowTemplate.maxSize
+ 10903.windowTemplate.minSize
+ 10904.IBPluginDependency
+ 10905.IBPluginDependency
+ 10905.IBViewBoundsToFrameTransform
+ 10906.IBPluginDependency
+ 10906.IBViewBoundsToFrameTransform
+ 10907.IBPluginDependency
+ 10907.IBViewBoundsToFrameTransform
+ 10908.IBPluginDependency
+ 10908.IBViewBoundsToFrameTransform
+ 10909.IBPluginDependency
+ 10909.IBViewBoundsToFrameTransform
+ 10910.IBPluginDependency
+ 10910.IBViewBoundsToFrameTransform
+ 10911.IBPluginDependency
+ 10911.IBViewBoundsToFrameTransform
+ 10912.IBPluginDependency
+ 10912.IBViewBoundsToFrameTransform
+ 10913.IBPluginDependency
+ 10913.IBViewBoundsToFrameTransform
+ 10914.IBPluginDependency
+ 10914.IBViewBoundsToFrameTransform
+ 10915.CustomClassName
+ 10915.IBPluginDependency
+ 10915.IBViewBoundsToFrameTransform
+ 10916.IBPluginDependency
+ 10917.IBPluginDependency
+ 10918.IBPluginDependency
+ 10919.IBPluginDependency
+ 10920.IBPluginDependency
+ 10920.IBViewBoundsToFrameTransform
+ 10921.IBPluginDependency
+ 10921.IBViewBoundsToFrameTransform
+ 10922.IBPluginDependency
+ 10922.IBViewBoundsToFrameTransform
+ 10923.IBPluginDependency
+ 10923.IBViewBoundsToFrameTransform
+ 10924.IBPluginDependency
+ 10925.IBEditorWindowLastContentRect
+ 10925.IBPluginDependency
+ 10926.IBPluginDependency
+ 10932.IBPluginDependency
+ 10933.IBPluginDependency
+ 10934.IBPluginDependency
+ 10935.IBPluginDependency
+ 10936.IBPluginDependency
+ 10937.IBPluginDependency
+ 10938.IBNumberFormatterBehaviorMetadataKey
+ 10938.IBNumberFormatterLocalizesFormatMetadataKey
+ 10938.IBPluginDependency
+ 10939.IBPluginDependency
+ 10940.IBPluginDependency
+ 10941.IBNumberFormatterBehaviorMetadataKey
+ 10941.IBNumberFormatterLocalizesFormatMetadataKey
+ 10941.IBPluginDependency
+ 10942.IBPluginDependency
+ 10943.IBEditorWindowLastContentRect
+ 10943.IBPluginDependency
+ 10944.IBPluginDependency
+ 10945.IBPluginDependency
+ 10946.IBPluginDependency
+ 10947.IBPluginDependency
+ 10948.IBPluginDependency
+ 10949.IBPluginDependency
+ 10950.IBPluginDependency
+ 10951.IBPluginDependency
+ 10952.IBPluginDependency
+ 10953.IBPluginDependency
+ 10954.IBPluginDependency
+ 10955.IBPluginDependency
+ 10956.IBPluginDependency
+ 10958.IBPluginDependency
+ 10958.IBViewBoundsToFrameTransform
+ 10959.IBPluginDependency
+ 10960.IBPluginDependency
+ 10960.IBViewBoundsToFrameTransform
+ 10961.IBPluginDependency
+ 10988.IBPluginDependency
+ 10988.IBViewBoundsToFrameTransform
+ 10989.IBPluginDependency
+ 10989.IBViewBoundsToFrameTransform
+ 10990.IBPluginDependency
+ 10991.IBPluginDependency
+ 10992.IBEditorWindowLastContentRect
+ 10992.IBPluginDependency
+ 10993.IBPluginDependency
+ 10994.IBPluginDependency
+ 10995.IBPluginDependency
+ 10996.IBPluginDependency
+ 10998.IBPluginDependency
+ 11000.IBPluginDependency
+ 11001.IBPluginDependency
+ 11002.IBPluginDependency
+ 11003.IBPluginDependency
+ 11004.IBPluginDependency
+ 11005.IBPluginDependency
+ 11006.IBPluginDependency
+ 11007.IBPluginDependency
+ 11008.IBPluginDependency
+ 11009.IBPluginDependency
+ 11010.IBPluginDependency
+ 11011.IBPluginDependency
+ 11012.IBPluginDependency
+ 11025.IBPluginDependency
+ 11027.IBPluginDependency
+ 11027.IBViewBoundsToFrameTransform
+ 11028.IBPluginDependency
+ 11028.IBViewBoundsToFrameTransform
+ 11029.IBPluginDependency
+ 11035.IBPluginDependency
+ 11035.IBViewBoundsToFrameTransform
+ 11036.IBPluginDependency
+ 11037.IBPluginDependency
+ 11051.IBPluginDependency
+ 11052.IBPluginDependency
+ 11053.IBPluginDependency
+ 11054.IBPluginDependency
+ 11055.IBPluginDependency
+ 11056.IBPluginDependency
+ 11057.IBPluginDependency
+ 11058.IBPluginDependency
+ 11059.IBPluginDependency
+ 11060.IBPluginDependency
+ 11061.IBPluginDependency
+ 11062.IBPluginDependency
+ 11066.IBEditorWindowLastContentRect
+ 11066.IBPluginDependency
+ 11066.IBViewBoundsToFrameTransform
+ 11067.IBPluginDependency
+ 11067.IBViewBoundsToFrameTransform
+ 11068.IBPluginDependency
+ 11068.IBViewBoundsToFrameTransform
+ 11069.IBPluginDependency
+ 11069.IBViewBoundsToFrameTransform
+ 11072.IBPluginDependency
+ 11072.IBViewBoundsToFrameTransform
+ 11073.IBPluginDependency
+ 11073.IBViewBoundsToFrameTransform
+ 11074.IBPluginDependency
+ 11074.IBViewBoundsToFrameTransform
+ 11075.IBPluginDependency
+ 11075.IBViewBoundsToFrameTransform
+ 11076.IBPluginDependency
+ 11076.IBViewBoundsToFrameTransform
+ 11077.IBPluginDependency
+ 11077.IBViewBoundsToFrameTransform
+ 11078.IBPluginDependency
+ 11078.IBViewBoundsToFrameTransform
+ 11079.IBPluginDependency
+ 11079.IBViewBoundsToFrameTransform
+ 11080.IBPluginDependency
+ 11080.IBViewBoundsToFrameTransform
+ 11081.IBPluginDependency
+ 11081.IBViewBoundsToFrameTransform
+ 11082.IBPluginDependency
+ 11082.IBViewBoundsToFrameTransform
+ 11083.IBPluginDependency
+ 11083.IBViewBoundsToFrameTransform
+ 11084.IBPluginDependency
+ 11084.IBViewBoundsToFrameTransform
+ 11085.IBPluginDependency
+ 11086.IBEditorWindowLastContentRect
+ 11086.IBPluginDependency
+ 11087.IBPluginDependency
+ 11088.IBPluginDependency
+ 11089.IBPluginDependency
+ 11090.IBPluginDependency
+ 11091.IBPluginDependency
+ 11092.IBPluginDependency
+ 11093.IBPluginDependency
+ 11093.IBViewBoundsToFrameTransform
+ 11094.IBPluginDependency
+ 11095.IBPluginDependency
+ 11096.IBEditorWindowLastContentRect
+ 11096.IBPluginDependency
+ 11097.IBPluginDependency
+ 11098.IBPluginDependency
+ 11099.IBPluginDependency
+ 11100.IBPluginDependency
+ 11101.IBPluginDependency
+ 11102.IBPluginDependency
+ 11103.IBPluginDependency
+ 11104.IBEditorWindowLastContentRect
+ 11104.IBPluginDependency
+ 11105.IBPluginDependency
+ 11106.IBPluginDependency
+ 11107.IBPluginDependency
+ 11108.IBPluginDependency
+ 11109.IBPluginDependency
+ 11110.IBPluginDependency
+ 11111.IBPluginDependency
+ 11112.IBPluginDependency
+ 11113.IBPluginDependency
+ 11114.IBPluginDependency
+ 11115.IBPluginDependency
+ 11116.IBPluginDependency
+ 11117.IBPluginDependency
+ 11118.IBPluginDependency
+ 11119.IBPluginDependency
+ 11120.IBPluginDependency
+ 11121.IBPluginDependency
+ 11122.IBPluginDependency
+ 11123.IBPluginDependency
+ 11124.IBPluginDependency
+ 11125.IBPluginDependency
+ 11126.IBPluginDependency
+ 11127.IBPluginDependency
+ 11128.IBPluginDependency
+ 11129.IBEditorWindowLastContentRect
+ 11129.IBPluginDependency
+ 1113.IBPluginDependency
+ 11130.IBPluginDependency
+ 11131.IBPluginDependency
+ 11132.IBPluginDependency
+ 11133.IBPluginDependency
+ 11134.IBPluginDependency
+ 11135.IBEditorWindowLastContentRect
+ 11135.IBPluginDependency
+ 11136.IBPluginDependency
+ 11137.IBPluginDependency
+ 11138.IBPluginDependency
+ 11139.IBPluginDependency
+ 1114.IBPluginDependency
+ 11140.IBPluginDependency
+ 1115.IBPluginDependency
+ 11162.IBPluginDependency
+ 11162.IBViewBoundsToFrameTransform
+ 11163.IBPluginDependency
+ 11164.IBPluginDependency
+ 11165.IBPluginDependency
+ 11166.IBPluginDependency
+ 11167.IBEditorWindowLastContentRect
+ 11167.IBPluginDependency
+ 11168.IBPluginDependency
+ 11169.IBPluginDependency
+ 11170.IBPluginDependency
+ 11171.IBPluginDependency
+ 11172.IBPluginDependency
+ 11173.IBPluginDependency
+ 1118.IBPluginDependency
+ 11185.IBPluginDependency
+ 1119.IBPluginDependency
+ 112.IBPluginDependency
+ 1120.IBPluginDependency
+ 11261.IBPluginDependency
+ 11263.IBPluginDependency
+ 11265.IBPluginDependency
+ 11267.IBPluginDependency
+ 11268.IBPluginDependency
+ 11270.IBPluginDependency
+ 11272.IBPluginDependency
+ 11274.IBPluginDependency
+ 11276.IBPluginDependency
+ 11278.IBPluginDependency
+ 11338.IBEditorWindowLastContentRect
+ 11338.IBPluginDependency
+ 11338.IBWindowTemplateEditedContentRect
+ 11338.NSWindowTemplate.visibleAtLaunch
+ 11339.IBPluginDependency
+ 11344.IBPluginDependency
+ 11344.IBViewBoundsToFrameTransform
+ 11345.IBPluginDependency
+ 11345.IBViewBoundsToFrameTransform
+ 11346.IBPluginDependency
+ 11347.IBPluginDependency
+ 11352.IBPluginDependency
+ 11352.IBViewBoundsToFrameTransform
+ 11353.IBPluginDependency
+ 11353.IBViewBoundsToFrameTransform
+ 11354.IBPluginDependency
+ 11355.IBPluginDependency
+ 11356.IBPluginDependency
+ 11363.IBPluginDependency
+ 11363.IBViewBoundsToFrameTransform
+ 11364.IBPluginDependency
+ 11365.IBPluginDependency
+ 11365.IBViewBoundsToFrameTransform
+ 11366.IBPluginDependency
+ 11367.IBPluginDependency
+ 11367.IBViewBoundsToFrameTransform
+ 11368.IBPluginDependency
+ 11369.IBPluginDependency
+ 11369.IBViewBoundsToFrameTransform
+ 11370.IBPluginDependency
+ 11371.IBPluginDependency
+ 11372.IBPluginDependency
+ 11385.IBPluginDependency
+ 11391.IBPluginDependency
+ 11391.IBViewBoundsToFrameTransform
+ 11392.IBPluginDependency
+ 11393.IBEditorWindowLastContentRect
+ 11393.IBPluginDependency
+ 11397.IBPluginDependency
+ 11397.IBViewBoundsToFrameTransform
+ 11398.IBPluginDependency
+ 11399.IBPluginDependency
+ 11422.IBPluginDependency
+ 11422.IBViewBoundsToFrameTransform
+ 11423.IBPluginDependency
+ 11424.IBPluginDependency
+ 11424.IBViewBoundsToFrameTransform
+ 11425.IBPluginDependency
+ 11426.IBPluginDependency
+ 11426.IBViewBoundsToFrameTransform
+ 11427.IBPluginDependency
+ 11428.IBPluginDependency
+ 11429.IBPluginDependency
+ 11430.IBPluginDependency
+ 11431.IBPluginDependency
+ 11432.IBPluginDependency
+ 11435.IBPluginDependency
+ 11435.IBViewBoundsToFrameTransform
+ 11436.IBPluginDependency
+ 11442.IBPluginDependency
+ 11442.IBViewBoundsToFrameTransform
+ 11443.IBPluginDependency
+ 11444.IBPluginDependency
+ 11444.IBViewBoundsToFrameTransform
+ 11445.IBPluginDependency
+ 11446.IBPluginDependency
+ 11446.IBViewBoundsToFrameTransform
+ 11447.IBPluginDependency
+ 11448.IBPluginDependency
+ 11448.IBViewBoundsToFrameTransform
+ 11449.IBPluginDependency
+ 11450.IBNumberFormatterBehaviorMetadataKey
+ 11450.IBNumberFormatterLocalizesFormatMetadataKey
+ 11450.IBPluginDependency
+ 11451.IBPluginDependency
+ 11451.IBViewBoundsToFrameTransform
+ 11452.IBPluginDependency
+ 11453.IBNumberFormatterBehaviorMetadataKey
+ 11453.IBNumberFormatterLocalizesFormatMetadataKey
+ 11453.IBPluginDependency
+ 11454.IBPluginDependency
+ 11454.IBViewBoundsToFrameTransform
+ 11455.IBPluginDependency
+ 11456.IBNumberFormatterBehaviorMetadataKey
+ 11456.IBNumberFormatterLocalizesFormatMetadataKey
+ 11456.IBPluginDependency
+ 11457.IBPluginDependency
+ 11457.IBViewBoundsToFrameTransform
+ 11458.IBPluginDependency
+ 11459.IBNumberFormatterBehaviorMetadataKey
+ 11459.IBNumberFormatterLocalizesFormatMetadataKey
+ 11459.IBPluginDependency
+ 11460.IBPluginDependency
+ 11460.IBViewBoundsToFrameTransform
+ 11461.IBPluginDependency
+ 11461.IBViewBoundsToFrameTransform
+ 11462.IBPluginDependency
+ 11462.IBViewBoundsToFrameTransform
+ 11463.IBPluginDependency
+ 11463.IBViewBoundsToFrameTransform
+ 11464.IBPluginDependency
+ 11464.IBViewBoundsToFrameTransform
+ 11465.IBPluginDependency
+ 11465.IBViewBoundsToFrameTransform
+ 11466.IBPluginDependency
+ 11466.IBViewBoundsToFrameTransform
+ 11467.IBPluginDependency
+ 11467.IBViewBoundsToFrameTransform
+ 11468.IBPluginDependency
+ 11469.IBNumberFormatterBehaviorMetadataKey
+ 11469.IBNumberFormatterLocalizesFormatMetadataKey
+ 11469.IBPluginDependency
+ 11470.IBPluginDependency
+ 11471.IBNumberFormatterBehaviorMetadataKey
+ 11471.IBNumberFormatterLocalizesFormatMetadataKey
+ 11471.IBPluginDependency
+ 11472.IBPluginDependency
+ 11473.IBNumberFormatterBehaviorMetadataKey
+ 11473.IBNumberFormatterLocalizesFormatMetadataKey
+ 11473.IBPluginDependency
+ 11474.IBPluginDependency
+ 11475.IBNumberFormatterBehaviorMetadataKey
+ 11475.IBNumberFormatterLocalizesFormatMetadataKey
+ 11475.IBPluginDependency
+ 11476.IBPluginDependency
+ 11477.IBPluginDependency
+ 11478.IBPluginDependency
+ 11479.IBPluginDependency
+ 11480.IBPluginDependency
+ 11480.IBViewBoundsToFrameTransform
+ 11481.IBPluginDependency
+ 11481.IBViewBoundsToFrameTransform
+ 11482.IBPluginDependency
+ 11482.IBViewBoundsToFrameTransform
+ 11483.IBPluginDependency
+ 11483.IBViewBoundsToFrameTransform
+ 11484.IBPluginDependency
+ 11484.IBViewBoundsToFrameTransform
+ 11485.IBPluginDependency
+ 11485.IBViewBoundsToFrameTransform
+ 11486.IBPluginDependency
+ 11486.IBViewBoundsToFrameTransform
+ 11487.IBPluginDependency
+ 11487.IBViewBoundsToFrameTransform
+ 11488.IBPluginDependency
+ 11489.IBNumberFormatterBehaviorMetadataKey
+ 11489.IBNumberFormatterLocalizesFormatMetadataKey
+ 11489.IBPluginDependency
+ 11490.IBPluginDependency
+ 11491.IBNumberFormatterBehaviorMetadataKey
+ 11491.IBNumberFormatterLocalizesFormatMetadataKey
+ 11491.IBPluginDependency
+ 11492.IBPluginDependency
+ 11493.IBNumberFormatterBehaviorMetadataKey
+ 11493.IBNumberFormatterLocalizesFormatMetadataKey
+ 11493.IBPluginDependency
+ 11494.IBPluginDependency
+ 11495.IBNumberFormatterBehaviorMetadataKey
+ 11495.IBNumberFormatterLocalizesFormatMetadataKey
+ 11495.IBPluginDependency
+ 11496.IBPluginDependency
+ 11497.IBPluginDependency
+ 11498.IBPluginDependency
+ 11499.IBPluginDependency
+ 11500.IBPluginDependency
+ 11500.IBViewBoundsToFrameTransform
+ 11501.IBPluginDependency
+ 11501.IBViewBoundsToFrameTransform
+ 11502.IBPluginDependency
+ 11502.IBViewBoundsToFrameTransform
+ 11503.IBPluginDependency
+ 11503.IBViewBoundsToFrameTransform
+ 11504.IBPluginDependency
+ 11504.IBViewBoundsToFrameTransform
+ 11505.IBPluginDependency
+ 11505.IBViewBoundsToFrameTransform
+ 11506.IBPluginDependency
+ 11506.IBViewBoundsToFrameTransform
+ 11507.IBPluginDependency
+ 11507.IBViewBoundsToFrameTransform
+ 11508.IBPluginDependency
+ 11509.IBNumberFormatterBehaviorMetadataKey
+ 11509.IBNumberFormatterLocalizesFormatMetadataKey
+ 11509.IBPluginDependency
+ 11510.IBPluginDependency
+ 11511.IBNumberFormatterBehaviorMetadataKey
+ 11511.IBNumberFormatterLocalizesFormatMetadataKey
+ 11511.IBPluginDependency
+ 11512.IBPluginDependency
+ 11513.IBNumberFormatterBehaviorMetadataKey
+ 11513.IBNumberFormatterLocalizesFormatMetadataKey
+ 11513.IBPluginDependency
+ 11514.IBPluginDependency
+ 11515.IBNumberFormatterBehaviorMetadataKey
+ 11515.IBNumberFormatterLocalizesFormatMetadataKey
+ 11515.IBPluginDependency
+ 11516.IBPluginDependency
+ 11517.IBPluginDependency
+ 11518.IBPluginDependency
+ 11519.IBPluginDependency
+ 11520.IBPluginDependency
+ 11520.IBViewBoundsToFrameTransform
+ 11521.IBPluginDependency
+ 11522.IBPluginDependency
+ 11522.IBViewBoundsToFrameTransform
+ 11523.IBPluginDependency
+ 11524.IBPluginDependency
+ 11524.IBViewBoundsToFrameTransform
+ 11525.IBPluginDependency
+ 11526.IBPluginDependency
+ 11526.IBViewBoundsToFrameTransform
+ 11527.IBPluginDependency
+ 11527.IBViewBoundsToFrameTransform
+ 11528.IBPluginDependency
+ 11528.IBViewBoundsToFrameTransform
+ 11529.IBPluginDependency
+ 11529.IBViewBoundsToFrameTransform
+ 11530.IBPluginDependency
+ 11530.IBViewBoundsToFrameTransform
+ 11531.IBPluginDependency
+ 11531.IBViewBoundsToFrameTransform
+ 11532.IBPluginDependency
+ 11532.IBViewBoundsToFrameTransform
+ 11533.IBPluginDependency
+ 11533.IBViewBoundsToFrameTransform
+ 11534.IBPluginDependency
+ 11534.IBViewBoundsToFrameTransform
+ 11535.IBPluginDependency
+ 11535.IBViewBoundsToFrameTransform
+ 11536.IBPluginDependency
+ 11536.IBViewBoundsToFrameTransform
+ 11537.IBPluginDependency
+ 11537.IBViewBoundsToFrameTransform
+ 11538.IBPluginDependency
+ 11538.IBViewBoundsToFrameTransform
+ 11539.IBPluginDependency
+ 11539.IBViewBoundsToFrameTransform
+ 11540.IBPluginDependency
+ 11540.IBViewBoundsToFrameTransform
+ 11541.IBPluginDependency
+ 11541.IBViewBoundsToFrameTransform
+ 11542.IBPluginDependency
+ 11542.IBViewBoundsToFrameTransform
+ 11543.IBPluginDependency
+ 11543.IBViewBoundsToFrameTransform
+ 11544.IBPluginDependency
+ 11544.IBViewBoundsToFrameTransform
+ 11545.IBPluginDependency
+ 11545.IBViewBoundsToFrameTransform
+ 11546.IBPluginDependency
+ 11546.IBViewBoundsToFrameTransform
+ 11547.IBPluginDependency
+ 11547.IBViewBoundsToFrameTransform
+ 11548.IBPluginDependency
+ 11548.IBViewBoundsToFrameTransform
+ 11549.IBPluginDependency
+ 11549.IBViewBoundsToFrameTransform
+ 11550.IBPluginDependency
+ 11551.IBPluginDependency
+ 11551.IBViewBoundsToFrameTransform
+ 11552.IBPluginDependency
+ 11552.IBViewBoundsToFrameTransform
+ 11553.IBPluginDependency
+ 11554.IBPluginDependency
+ 11554.IBViewBoundsToFrameTransform
+ 11555.IBPluginDependency
+ 11555.IBViewBoundsToFrameTransform
+ 11556.IBPluginDependency
+ 11556.IBViewBoundsToFrameTransform
+ 11557.IBPluginDependency
+ 11557.IBViewBoundsToFrameTransform
+ 11558.IBPluginDependency
+ 11559.IBPluginDependency
+ 11559.IBViewBoundsToFrameTransform
+ 11560.IBPluginDependency
+ 11560.IBViewBoundsToFrameTransform
+ 11561.IBPluginDependency
+ 11562.IBPluginDependency
+ 11563.IBPluginDependency
+ 11564.IBPluginDependency
+ 11565.IBNumberFormatterBehaviorMetadataKey
+ 11565.IBNumberFormatterLocalizesFormatMetadataKey
+ 11565.IBPluginDependency
+ 11566.IBPluginDependency
+ 11567.IBNumberFormatterBehaviorMetadataKey
+ 11567.IBNumberFormatterLocalizesFormatMetadataKey
+ 11567.IBPluginDependency
+ 11568.IBPluginDependency
+ 11569.IBNumberFormatterBehaviorMetadataKey
+ 11569.IBNumberFormatterLocalizesFormatMetadataKey
+ 11569.IBPluginDependency
+ 11570.IBPluginDependency
+ 11571.IBNumberFormatterBehaviorMetadataKey
+ 11571.IBNumberFormatterLocalizesFormatMetadataKey
+ 11571.IBPluginDependency
+ 11572.IBPluginDependency
+ 11573.IBPluginDependency
+ 11574.IBPluginDependency
+ 11575.IBPluginDependency
+ 11576.IBPluginDependency
+ 11577.IBNumberFormatterBehaviorMetadataKey
+ 11577.IBNumberFormatterLocalizesFormatMetadataKey
+ 11577.IBPluginDependency
+ 11578.IBPluginDependency
+ 11579.IBNumberFormatterBehaviorMetadataKey
+ 11579.IBNumberFormatterLocalizesFormatMetadataKey
+ 11579.IBPluginDependency
+ 11580.IBPluginDependency
+ 11581.IBNumberFormatterBehaviorMetadataKey
+ 11581.IBNumberFormatterLocalizesFormatMetadataKey
+ 11581.IBPluginDependency
+ 11582.IBPluginDependency
+ 11583.IBNumberFormatterBehaviorMetadataKey
+ 11583.IBNumberFormatterLocalizesFormatMetadataKey
+ 11583.IBPluginDependency
+ 11584.IBPluginDependency
+ 11585.IBPluginDependency
+ 11586.IBPluginDependency
+ 11587.IBPluginDependency
+ 11588.IBPluginDependency
+ 11589.IBNumberFormatterBehaviorMetadataKey
+ 11589.IBNumberFormatterLocalizesFormatMetadataKey
+ 11589.IBPluginDependency
+ 11590.IBPluginDependency
+ 11591.IBNumberFormatterBehaviorMetadataKey
+ 11591.IBNumberFormatterLocalizesFormatMetadataKey
+ 11591.IBPluginDependency
+ 11592.IBPluginDependency
+ 11593.IBNumberFormatterBehaviorMetadataKey
+ 11593.IBNumberFormatterLocalizesFormatMetadataKey
+ 11593.IBPluginDependency
+ 11594.IBPluginDependency
+ 11595.IBNumberFormatterBehaviorMetadataKey
+ 11595.IBNumberFormatterLocalizesFormatMetadataKey
+ 11595.IBPluginDependency
+ 11596.IBPluginDependency
+ 11597.IBPluginDependency
+ 11598.IBPluginDependency
+ 11599.IBPluginDependency
+ 11600.IBPluginDependency
+ 11601.IBNumberFormatterBehaviorMetadataKey
+ 11601.IBNumberFormatterLocalizesFormatMetadataKey
+ 11601.IBPluginDependency
+ 11602.IBPluginDependency
+ 11603.IBNumberFormatterBehaviorMetadataKey
+ 11603.IBNumberFormatterLocalizesFormatMetadataKey
+ 11603.IBPluginDependency
+ 11604.IBPluginDependency
+ 11605.IBNumberFormatterBehaviorMetadataKey
+ 11605.IBNumberFormatterLocalizesFormatMetadataKey
+ 11605.IBPluginDependency
+ 11606.IBPluginDependency
+ 11607.IBNumberFormatterBehaviorMetadataKey
+ 11607.IBNumberFormatterLocalizesFormatMetadataKey
+ 11607.IBPluginDependency
+ 11608.IBPluginDependency
+ 11609.IBPluginDependency
+ 11610.IBPluginDependency
+ 11611.IBPluginDependency
+ 11612.IBPluginDependency
+ 11612.IBViewBoundsToFrameTransform
+ 11613.IBPluginDependency
+ 11613.IBViewBoundsToFrameTransform
+ 11614.IBPluginDependency
+ 11614.IBViewBoundsToFrameTransform
+ 11615.IBPluginDependency
+ 11615.IBViewBoundsToFrameTransform
+ 11616.IBPluginDependency
+ 11616.IBViewBoundsToFrameTransform
+ 11617.IBPluginDependency
+ 11617.IBViewBoundsToFrameTransform
+ 11618.IBPluginDependency
+ 11618.IBViewBoundsToFrameTransform
+ 11619.IBPluginDependency
+ 11619.IBViewBoundsToFrameTransform
+ 11620.IBPluginDependency
+ 11620.IBViewBoundsToFrameTransform
+ 11621.IBPluginDependency
+ 11621.IBViewBoundsToFrameTransform
+ 11622.IBPluginDependency
+ 11622.IBViewBoundsToFrameTransform
+ 11623.IBPluginDependency
+ 11623.IBViewBoundsToFrameTransform
+ 11624.IBPluginDependency
+ 11624.IBViewBoundsToFrameTransform
+ 11625.IBPluginDependency
+ 11625.IBViewBoundsToFrameTransform
+ 11626.IBPluginDependency
+ 11626.IBViewBoundsToFrameTransform
+ 11627.IBPluginDependency
+ 11627.IBViewBoundsToFrameTransform
+ 11628.IBPluginDependency
+ 11628.IBViewBoundsToFrameTransform
+ 11629.IBPluginDependency
+ 11629.IBViewBoundsToFrameTransform
+ 11630.IBPluginDependency
+ 11630.IBViewBoundsToFrameTransform
+ 11631.IBPluginDependency
+ 11631.IBViewBoundsToFrameTransform
+ 11632.IBPluginDependency
+ 11632.IBViewBoundsToFrameTransform
+ 11633.IBPluginDependency
+ 11633.IBViewBoundsToFrameTransform
+ 11634.IBPluginDependency
+ 11634.IBViewBoundsToFrameTransform
+ 11635.IBPluginDependency
+ 11635.IBViewBoundsToFrameTransform
+ 11636.IBPluginDependency
+ 11637.IBPluginDependency
+ 11637.IBViewBoundsToFrameTransform
+ 11638.IBPluginDependency
+ 11638.IBViewBoundsToFrameTransform
+ 11639.IBPluginDependency
+ 11640.IBPluginDependency
+ 11640.IBViewBoundsToFrameTransform
+ 11641.IBPluginDependency
+ 11641.IBViewBoundsToFrameTransform
+ 11642.IBPluginDependency
+ 11642.IBViewBoundsToFrameTransform
+ 11643.IBPluginDependency
+ 11643.IBViewBoundsToFrameTransform
+ 11644.IBPluginDependency
+ 11645.IBPluginDependency
+ 11645.IBViewBoundsToFrameTransform
+ 11646.IBPluginDependency
+ 11646.IBViewBoundsToFrameTransform
+ 11647.IBPluginDependency
+ 11648.IBPluginDependency
+ 11649.IBPluginDependency
+ 11650.IBPluginDependency
+ 11651.IBNumberFormatterBehaviorMetadataKey
+ 11651.IBNumberFormatterLocalizesFormatMetadataKey
+ 11651.IBPluginDependency
+ 11652.IBPluginDependency
+ 11653.IBNumberFormatterBehaviorMetadataKey
+ 11653.IBNumberFormatterLocalizesFormatMetadataKey
+ 11653.IBPluginDependency
+ 11654.IBPluginDependency
+ 11655.IBNumberFormatterBehaviorMetadataKey
+ 11655.IBNumberFormatterLocalizesFormatMetadataKey
+ 11655.IBPluginDependency
+ 11656.IBPluginDependency
+ 11657.IBNumberFormatterBehaviorMetadataKey
+ 11657.IBNumberFormatterLocalizesFormatMetadataKey
+ 11657.IBPluginDependency
+ 11658.IBPluginDependency
+ 11659.IBPluginDependency
+ 11660.IBPluginDependency
+ 11661.IBPluginDependency
+ 11662.IBPluginDependency
+ 11663.IBNumberFormatterBehaviorMetadataKey
+ 11663.IBNumberFormatterLocalizesFormatMetadataKey
+ 11663.IBPluginDependency
+ 11664.IBPluginDependency
+ 11665.IBNumberFormatterBehaviorMetadataKey
+ 11665.IBNumberFormatterLocalizesFormatMetadataKey
+ 11665.IBPluginDependency
+ 11666.IBPluginDependency
+ 11667.IBNumberFormatterBehaviorMetadataKey
+ 11667.IBNumberFormatterLocalizesFormatMetadataKey
+ 11667.IBPluginDependency
+ 11668.IBPluginDependency
+ 11669.IBNumberFormatterBehaviorMetadataKey
+ 11669.IBNumberFormatterLocalizesFormatMetadataKey
+ 11669.IBPluginDependency
+ 11670.IBPluginDependency
+ 11671.IBPluginDependency
+ 11672.IBPluginDependency
+ 11673.IBPluginDependency
+ 11674.IBPluginDependency
+ 11675.IBNumberFormatterBehaviorMetadataKey
+ 11675.IBNumberFormatterLocalizesFormatMetadataKey
+ 11675.IBPluginDependency
+ 11676.IBPluginDependency
+ 11677.IBNumberFormatterBehaviorMetadataKey
+ 11677.IBNumberFormatterLocalizesFormatMetadataKey
+ 11677.IBPluginDependency
+ 11678.IBPluginDependency
+ 11679.IBNumberFormatterBehaviorMetadataKey
+ 11679.IBNumberFormatterLocalizesFormatMetadataKey
+ 11679.IBPluginDependency
+ 11680.IBPluginDependency
+ 11681.IBNumberFormatterBehaviorMetadataKey
+ 11681.IBNumberFormatterLocalizesFormatMetadataKey
+ 11681.IBPluginDependency
+ 11682.IBPluginDependency
+ 11683.IBPluginDependency
+ 11684.IBPluginDependency
+ 11685.IBPluginDependency
+ 11686.IBPluginDependency
+ 11687.IBNumberFormatterBehaviorMetadataKey
+ 11687.IBNumberFormatterLocalizesFormatMetadataKey
+ 11687.IBPluginDependency
+ 11688.IBPluginDependency
+ 11689.IBNumberFormatterBehaviorMetadataKey
+ 11689.IBNumberFormatterLocalizesFormatMetadataKey
+ 11689.IBPluginDependency
+ 11690.IBPluginDependency
+ 11691.IBNumberFormatterBehaviorMetadataKey
+ 11691.IBNumberFormatterLocalizesFormatMetadataKey
+ 11691.IBPluginDependency
+ 11692.IBPluginDependency
+ 11693.IBNumberFormatterBehaviorMetadataKey
+ 11693.IBNumberFormatterLocalizesFormatMetadataKey
+ 11693.IBPluginDependency
+ 11694.IBPluginDependency
+ 11695.IBPluginDependency
+ 11696.IBPluginDependency
+ 11697.IBPluginDependency
+ 11757.IBAttributePlaceholdersKey
+ 11757.IBPluginDependency
+ 11757.IBViewBoundsToFrameTransform
+ 11758.IBPluginDependency
+ 11759.IBEditorWindowLastContentRect
+ 11759.IBPluginDependency
+ 11760.IBPluginDependency
+ 11764.IBPluginDependency
+ 11764.IBViewBoundsToFrameTransform
+ 11765.IBPluginDependency
+ 11767.IBPluginDependency
+ 11768.IBPluginDependency
+ 11771.IBAttributePlaceholdersKey
+ 11771.IBPluginDependency
+ 11772.IBPluginDependency
+ 11773.IBEditorWindowLastContentRect
+ 11773.IBPluginDependency
+ 11774.IBPluginDependency
+ 11775.IBPluginDependency
+ 11776.IBPluginDependency
+ 11777.IBPluginDependency
+ 11778.IBPluginDependency
+ 11779.IBPluginDependency
+ 11783.IBPluginDependency
+ 11784.IBPluginDependency
+ 11785.IBPluginDependency
+ 11786.IBPluginDependency
+ 11787.IBPluginDependency
+ 11788.IBPluginDependency
+ 11789.IBPluginDependency
+ 11790.IBPluginDependency
+ 11791.IBPluginDependency
+ 11792.IBPluginDependency
+ 11793.IBPluginDependency
+ 11796.IBPluginDependency
+ 11796.IBViewBoundsToFrameTransform
+ 11797.IBPluginDependency
+ 11798.IBPluginDependency
+ 11798.IBViewBoundsToFrameTransform
+ 11799.IBPluginDependency
+ 11800.IBPluginDependency
+ 11800.IBViewBoundsToFrameTransform
+ 11801.IBPluginDependency
+ 11802.IBPluginDependency
+ 11802.IBViewBoundsToFrameTransform
+ 11803.IBPluginDependency
+ 11804.IBPluginDependency
+ 11804.IBViewBoundsToFrameTransform
+ 11805.IBPluginDependency
+ 11806.IBPluginDependency
+ 11806.IBViewBoundsToFrameTransform
+ 11807.IBPluginDependency
+ 11808.IBPluginDependency
+ 11808.IBViewBoundsToFrameTransform
+ 11809.IBPluginDependency
+ 11810.IBPluginDependency
+ 11810.IBViewBoundsToFrameTransform
+ 11811.IBPluginDependency
+ 11818.IBPluginDependency
+ 11818.IBViewBoundsToFrameTransform
+ 11819.IBPluginDependency
+ 11819.IBViewBoundsToFrameTransform
+ 11820.IBPluginDependency
+ 11820.IBViewBoundsToFrameTransform
+ 11821.IBPluginDependency
+ 11822.IBPluginDependency
+ 11823.IBPluginDependency
+ 11824.IBPluginDependency
+ 11824.IBViewBoundsToFrameTransform
+ 11825.IBPluginDependency
+ 11825.IBViewBoundsToFrameTransform
+ 11826.IBPluginDependency
+ 11826.IBViewBoundsToFrameTransform
+ 11827.IBPluginDependency
+ 11828.IBPluginDependency
+ 11829.IBPluginDependency
+ 11830.IBPluginDependency
+ 11830.IBViewBoundsToFrameTransform
+ 11831.IBPluginDependency
+ 11831.IBViewBoundsToFrameTransform
+ 11832.IBPluginDependency
+ 11832.IBViewBoundsToFrameTransform
+ 11833.IBPluginDependency
+ 11834.IBPluginDependency
+ 11835.IBPluginDependency
+ 11836.IBPluginDependency
+ 11836.IBViewBoundsToFrameTransform
+ 11837.IBPluginDependency
+ 11838.IBPluginDependency
+ 11838.IBViewBoundsToFrameTransform
+ 11839.IBPluginDependency
+ 11840.IBNumberFormatterBehaviorMetadataKey
+ 11840.IBNumberFormatterLocalizesFormatMetadataKey
+ 11840.IBPluginDependency
+ 11841.IBPluginDependency
+ 11841.IBViewBoundsToFrameTransform
+ 11842.IBPluginDependency
+ 11843.IBNumberFormatterBehaviorMetadataKey
+ 11843.IBNumberFormatterLocalizesFormatMetadataKey
+ 11843.IBPluginDependency
+ 11844.IBPluginDependency
+ 11844.IBViewBoundsToFrameTransform
+ 11845.IBPluginDependency
+ 11846.IBNumberFormatterBehaviorMetadataKey
+ 11846.IBNumberFormatterLocalizesFormatMetadataKey
+ 11846.IBPluginDependency
+ 11847.IBPluginDependency
+ 11847.IBViewBoundsToFrameTransform
+ 11848.IBPluginDependency
+ 11849.IBNumberFormatterBehaviorMetadataKey
+ 11849.IBNumberFormatterLocalizesFormatMetadataKey
+ 11849.IBPluginDependency
+ 11850.IBPluginDependency
+ 11850.IBViewBoundsToFrameTransform
+ 11851.IBPluginDependency
+ 11852.IBPluginDependency
+ 11852.IBViewBoundsToFrameTransform
+ 11853.IBPluginDependency
+ 11853.IBViewBoundsToFrameTransform
+ 11854.IBPluginDependency
+ 11854.IBViewBoundsToFrameTransform
+ 11855.IBPluginDependency
+ 11855.IBViewBoundsToFrameTransform
+ 11856.IBPluginDependency
+ 11857.IBNumberFormatterBehaviorMetadataKey
+ 11857.IBNumberFormatterLocalizesFormatMetadataKey
+ 11857.IBPluginDependency
+ 11858.IBPluginDependency
+ 11859.IBNumberFormatterBehaviorMetadataKey
+ 11859.IBNumberFormatterLocalizesFormatMetadataKey
+ 11859.IBPluginDependency
+ 11860.IBPluginDependency
+ 11861.IBNumberFormatterBehaviorMetadataKey
+ 11861.IBNumberFormatterLocalizesFormatMetadataKey
+ 11861.IBPluginDependency
+ 11862.IBPluginDependency
+ 11863.IBNumberFormatterBehaviorMetadataKey
+ 11863.IBNumberFormatterLocalizesFormatMetadataKey
+ 11863.IBPluginDependency
+ 11864.IBPluginDependency
+ 11864.IBViewBoundsToFrameTransform
+ 11865.IBPluginDependency
+ 11865.IBViewBoundsToFrameTransform
+ 11866.IBPluginDependency
+ 11866.IBViewBoundsToFrameTransform
+ 11867.IBPluginDependency
+ 11867.IBViewBoundsToFrameTransform
+ 11868.IBPluginDependency
+ 11869.IBNumberFormatterBehaviorMetadataKey
+ 11869.IBNumberFormatterLocalizesFormatMetadataKey
+ 11869.IBPluginDependency
+ 11870.IBPluginDependency
+ 11871.IBNumberFormatterBehaviorMetadataKey
+ 11871.IBNumberFormatterLocalizesFormatMetadataKey
+ 11871.IBPluginDependency
+ 11872.IBPluginDependency
+ 11873.IBNumberFormatterBehaviorMetadataKey
+ 11873.IBNumberFormatterLocalizesFormatMetadataKey
+ 11873.IBPluginDependency
+ 11874.IBPluginDependency
+ 11875.IBNumberFormatterBehaviorMetadataKey
+ 11875.IBNumberFormatterLocalizesFormatMetadataKey
+ 11875.IBPluginDependency
+ 11876.IBPluginDependency
+ 11876.IBViewBoundsToFrameTransform
+ 11877.IBPluginDependency
+ 11877.IBViewBoundsToFrameTransform
+ 11878.IBPluginDependency
+ 11878.IBViewBoundsToFrameTransform
+ 11879.IBPluginDependency
+ 11879.IBViewBoundsToFrameTransform
+ 11880.IBPluginDependency
+ 11881.IBNumberFormatterBehaviorMetadataKey
+ 11881.IBNumberFormatterLocalizesFormatMetadataKey
+ 11881.IBPluginDependency
+ 11882.IBPluginDependency
+ 11883.IBNumberFormatterBehaviorMetadataKey
+ 11883.IBNumberFormatterLocalizesFormatMetadataKey
+ 11883.IBPluginDependency
+ 11884.IBPluginDependency
+ 11885.IBNumberFormatterBehaviorMetadataKey
+ 11885.IBNumberFormatterLocalizesFormatMetadataKey
+ 11885.IBPluginDependency
+ 11886.IBPluginDependency
+ 11887.IBNumberFormatterBehaviorMetadataKey
+ 11887.IBNumberFormatterLocalizesFormatMetadataKey
+ 11887.IBPluginDependency
+ 11888.IBPluginDependency
+ 11888.IBViewBoundsToFrameTransform
+ 11889.IBPluginDependency
+ 11889.IBViewBoundsToFrameTransform
+ 11890.IBPluginDependency
+ 11890.IBViewBoundsToFrameTransform
+ 11891.IBPluginDependency
+ 11891.IBViewBoundsToFrameTransform
+ 11892.IBPluginDependency
+ 11892.IBViewBoundsToFrameTransform
+ 11893.IBPluginDependency
+ 11893.IBViewBoundsToFrameTransform
+ 11894.IBPluginDependency
+ 11894.IBViewBoundsToFrameTransform
+ 11895.IBPluginDependency
+ 11895.IBViewBoundsToFrameTransform
+ 11896.IBPluginDependency
+ 11896.IBViewBoundsToFrameTransform
+ 11897.IBPluginDependency
+ 11897.IBViewBoundsToFrameTransform
+ 11898.IBPluginDependency
+ 11898.IBViewBoundsToFrameTransform
+ 11899.IBPluginDependency
+ 11899.IBViewBoundsToFrameTransform
+ 11900.IBPluginDependency
+ 11900.IBViewBoundsToFrameTransform
+ 11901.IBPluginDependency
+ 11901.IBViewBoundsToFrameTransform
+ 11902.IBPluginDependency
+ 11902.IBViewBoundsToFrameTransform
+ 11903.IBPluginDependency
+ 11903.IBViewBoundsToFrameTransform
+ 11904.IBPluginDependency
+ 11905.IBPluginDependency
+ 11906.IBPluginDependency
+ 11906.IBViewBoundsToFrameTransform
+ 11907.IBPluginDependency
+ 11907.IBViewBoundsToFrameTransform
+ 11908.IBPluginDependency
+ 11908.IBViewBoundsToFrameTransform
+ 11909.IBPluginDependency
+ 11909.IBViewBoundsToFrameTransform
+ 11910.IBPluginDependency
+ 11910.IBViewBoundsToFrameTransform
+ 11911.IBPluginDependency
+ 11911.IBViewBoundsToFrameTransform
+ 11912.IBPluginDependency
+ 11912.IBViewBoundsToFrameTransform
+ 11913.IBPluginDependency
+ 11913.IBViewBoundsToFrameTransform
+ 11914.IBPluginDependency
+ 11914.IBViewBoundsToFrameTransform
+ 11915.IBPluginDependency
+ 11915.IBViewBoundsToFrameTransform
+ 11916.IBPluginDependency
+ 11916.IBViewBoundsToFrameTransform
+ 11917.IBPluginDependency
+ 11917.IBViewBoundsToFrameTransform
+ 11918.IBPluginDependency
+ 11918.IBViewBoundsToFrameTransform
+ 11919.IBPluginDependency
+ 11919.IBViewBoundsToFrameTransform
+ 11920.IBPluginDependency
+ 11920.IBViewBoundsToFrameTransform
+ 11921.IBPluginDependency
+ 11921.IBViewBoundsToFrameTransform
+ 11922.IBPluginDependency
+ 11923.IBPluginDependency
+ 11924.IBPluginDependency
+ 11925.IBNumberFormatterBehaviorMetadataKey
+ 11925.IBNumberFormatterLocalizesFormatMetadataKey
+ 11925.IBPluginDependency
+ 11926.IBPluginDependency
+ 11927.IBNumberFormatterBehaviorMetadataKey
+ 11927.IBNumberFormatterLocalizesFormatMetadataKey
+ 11927.IBPluginDependency
+ 11928.IBPluginDependency
+ 11929.IBNumberFormatterBehaviorMetadataKey
+ 11929.IBNumberFormatterLocalizesFormatMetadataKey
+ 11929.IBPluginDependency
+ 11930.IBPluginDependency
+ 11931.IBNumberFormatterBehaviorMetadataKey
+ 11931.IBNumberFormatterLocalizesFormatMetadataKey
+ 11931.IBPluginDependency
+ 11932.IBPluginDependency
+ 11933.IBNumberFormatterBehaviorMetadataKey
+ 11933.IBNumberFormatterLocalizesFormatMetadataKey
+ 11933.IBPluginDependency
+ 11934.IBPluginDependency
+ 11935.IBNumberFormatterBehaviorMetadataKey
+ 11935.IBNumberFormatterLocalizesFormatMetadataKey
+ 11935.IBPluginDependency
+ 11936.IBPluginDependency
+ 11937.IBNumberFormatterBehaviorMetadataKey
+ 11937.IBNumberFormatterLocalizesFormatMetadataKey
+ 11937.IBPluginDependency
+ 11938.IBPluginDependency
+ 11939.IBNumberFormatterBehaviorMetadataKey
+ 11939.IBNumberFormatterLocalizesFormatMetadataKey
+ 11939.IBPluginDependency
+ 11940.IBPluginDependency
+ 11941.IBNumberFormatterBehaviorMetadataKey
+ 11941.IBNumberFormatterLocalizesFormatMetadataKey
+ 11941.IBPluginDependency
+ 11942.IBPluginDependency
+ 11943.IBNumberFormatterBehaviorMetadataKey
+ 11943.IBNumberFormatterLocalizesFormatMetadataKey
+ 11943.IBPluginDependency
+ 11944.IBPluginDependency
+ 11945.IBNumberFormatterBehaviorMetadataKey
+ 11945.IBNumberFormatterLocalizesFormatMetadataKey
+ 11945.IBPluginDependency
+ 11946.IBPluginDependency
+ 11947.IBNumberFormatterBehaviorMetadataKey
+ 11947.IBNumberFormatterLocalizesFormatMetadataKey
+ 11947.IBPluginDependency
+ 11948.IBPluginDependency
+ 11949.IBNumberFormatterBehaviorMetadataKey
+ 11949.IBNumberFormatterLocalizesFormatMetadataKey
+ 11949.IBPluginDependency
+ 11950.IBPluginDependency
+ 11951.IBNumberFormatterBehaviorMetadataKey
+ 11951.IBNumberFormatterLocalizesFormatMetadataKey
+ 11951.IBPluginDependency
+ 11952.IBPluginDependency
+ 11953.IBNumberFormatterBehaviorMetadataKey
+ 11953.IBNumberFormatterLocalizesFormatMetadataKey
+ 11953.IBPluginDependency
+ 11954.IBPluginDependency
+ 11955.IBNumberFormatterBehaviorMetadataKey
+ 11955.IBNumberFormatterLocalizesFormatMetadataKey
+ 11955.IBPluginDependency
+ 11956.IBPluginDependency
+ 11957.IBPluginDependency
+ 11958.IBPluginDependency
+ 11959.IBPluginDependency
+ 11960.IBPluginDependency
+ 11961.IBPluginDependency
+ 11962.IBPluginDependency
+ 11963.IBPluginDependency
+ 11964.IBPluginDependency
+ 11965.IBPluginDependency
+ 11966.IBPluginDependency
+ 11967.IBPluginDependency
+ 11968.IBPluginDependency
+ 11969.IBPluginDependency
+ 11970.IBPluginDependency
+ 11971.IBPluginDependency
+ 11972.IBPluginDependency
+ 11973.IBPluginDependency
+ 11974.IBPluginDependency
+ 11974.IBViewBoundsToFrameTransform
+ 11975.IBPluginDependency
+ 11975.IBViewBoundsToFrameTransform
+ 11976.IBPluginDependency
+ 11976.IBViewBoundsToFrameTransform
+ 11977.IBPluginDependency
+ 11977.IBViewBoundsToFrameTransform
+ 11978.IBPluginDependency
+ 11978.IBViewBoundsToFrameTransform
+ 11979.IBPluginDependency
+ 11979.IBViewBoundsToFrameTransform
+ 11980.IBPluginDependency
+ 11980.IBViewBoundsToFrameTransform
+ 11981.IBPluginDependency
+ 11981.IBViewBoundsToFrameTransform
+ 11982.IBPluginDependency
+ 11982.IBViewBoundsToFrameTransform
+ 11983.IBPluginDependency
+ 11983.IBViewBoundsToFrameTransform
+ 11984.IBPluginDependency
+ 11984.IBViewBoundsToFrameTransform
+ 11985.IBPluginDependency
+ 11985.IBViewBoundsToFrameTransform
+ 11986.IBPluginDependency
+ 11986.IBViewBoundsToFrameTransform
+ 11987.IBPluginDependency
+ 11987.IBViewBoundsToFrameTransform
+ 11988.IBPluginDependency
+ 11988.IBViewBoundsToFrameTransform
+ 11989.IBPluginDependency
+ 11989.IBViewBoundsToFrameTransform
+ 11990.IBPluginDependency
+ 11991.IBPluginDependency
+ 11992.IBPluginDependency
+ 11992.IBViewBoundsToFrameTransform
+ 11993.IBPluginDependency
+ 11993.IBViewBoundsToFrameTransform
+ 11994.IBPluginDependency
+ 11994.IBViewBoundsToFrameTransform
+ 11995.IBPluginDependency
+ 11995.IBViewBoundsToFrameTransform
+ 11996.IBPluginDependency
+ 11996.IBViewBoundsToFrameTransform
+ 11997.IBPluginDependency
+ 11997.IBViewBoundsToFrameTransform
+ 11998.IBPluginDependency
+ 11998.IBViewBoundsToFrameTransform
+ 11999.IBPluginDependency
+ 11999.IBViewBoundsToFrameTransform
+ 12000.IBPluginDependency
+ 12000.IBViewBoundsToFrameTransform
+ 12001.IBPluginDependency
+ 12001.IBViewBoundsToFrameTransform
+ 12002.IBPluginDependency
+ 12002.IBViewBoundsToFrameTransform
+ 12003.IBPluginDependency
+ 12003.IBViewBoundsToFrameTransform
+ 12004.IBPluginDependency
+ 12004.IBViewBoundsToFrameTransform
+ 12005.IBPluginDependency
+ 12005.IBViewBoundsToFrameTransform
+ 12006.IBPluginDependency
+ 12006.IBViewBoundsToFrameTransform
+ 12007.IBPluginDependency
+ 12007.IBViewBoundsToFrameTransform
+ 12008.IBPluginDependency
+ 12009.IBPluginDependency
+ 12010.IBPluginDependency
+ 12011.IBNumberFormatterBehaviorMetadataKey
+ 12011.IBNumberFormatterLocalizesFormatMetadataKey
+ 12011.IBPluginDependency
+ 12012.IBPluginDependency
+ 12013.IBNumberFormatterBehaviorMetadataKey
+ 12013.IBNumberFormatterLocalizesFormatMetadataKey
+ 12013.IBPluginDependency
+ 12014.IBPluginDependency
+ 12015.IBNumberFormatterBehaviorMetadataKey
+ 12015.IBNumberFormatterLocalizesFormatMetadataKey
+ 12015.IBPluginDependency
+ 12016.IBPluginDependency
+ 12017.IBNumberFormatterBehaviorMetadataKey
+ 12017.IBNumberFormatterLocalizesFormatMetadataKey
+ 12017.IBPluginDependency
+ 12018.IBPluginDependency
+ 12019.IBNumberFormatterBehaviorMetadataKey
+ 12019.IBNumberFormatterLocalizesFormatMetadataKey
+ 12019.IBPluginDependency
+ 12020.IBPluginDependency
+ 12021.IBNumberFormatterBehaviorMetadataKey
+ 12021.IBNumberFormatterLocalizesFormatMetadataKey
+ 12021.IBPluginDependency
+ 12022.IBPluginDependency
+ 12023.IBNumberFormatterBehaviorMetadataKey
+ 12023.IBNumberFormatterLocalizesFormatMetadataKey
+ 12023.IBPluginDependency
+ 12024.IBPluginDependency
+ 12025.IBNumberFormatterBehaviorMetadataKey
+ 12025.IBNumberFormatterLocalizesFormatMetadataKey
+ 12025.IBPluginDependency
+ 12026.IBPluginDependency
+ 12027.IBNumberFormatterBehaviorMetadataKey
+ 12027.IBNumberFormatterLocalizesFormatMetadataKey
+ 12027.IBPluginDependency
+ 12028.IBPluginDependency
+ 12029.IBNumberFormatterBehaviorMetadataKey
+ 12029.IBNumberFormatterLocalizesFormatMetadataKey
+ 12029.IBPluginDependency
+ 12030.IBPluginDependency
+ 12031.IBNumberFormatterBehaviorMetadataKey
+ 12031.IBNumberFormatterLocalizesFormatMetadataKey
+ 12031.IBPluginDependency
+ 12032.IBPluginDependency
+ 12033.IBNumberFormatterBehaviorMetadataKey
+ 12033.IBNumberFormatterLocalizesFormatMetadataKey
+ 12033.IBPluginDependency
+ 12034.IBPluginDependency
+ 12035.IBNumberFormatterBehaviorMetadataKey
+ 12035.IBNumberFormatterLocalizesFormatMetadataKey
+ 12035.IBPluginDependency
+ 12036.IBPluginDependency
+ 12037.IBNumberFormatterBehaviorMetadataKey
+ 12037.IBNumberFormatterLocalizesFormatMetadataKey
+ 12037.IBPluginDependency
+ 12038.IBPluginDependency
+ 12039.IBNumberFormatterBehaviorMetadataKey
+ 12039.IBNumberFormatterLocalizesFormatMetadataKey
+ 12039.IBPluginDependency
+ 12040.IBPluginDependency
+ 12041.IBNumberFormatterBehaviorMetadataKey
+ 12041.IBNumberFormatterLocalizesFormatMetadataKey
+ 12041.IBPluginDependency
+ 12042.IBPluginDependency
+ 12043.IBPluginDependency
+ 12044.IBPluginDependency
+ 12045.IBPluginDependency
+ 12046.IBPluginDependency
+ 12047.IBPluginDependency
+ 12048.IBPluginDependency
+ 12049.IBPluginDependency
+ 12050.IBPluginDependency
+ 12051.IBPluginDependency
+ 12052.IBPluginDependency
+ 12053.IBPluginDependency
+ 12054.IBPluginDependency
+ 12055.IBPluginDependency
+ 12056.IBPluginDependency
+ 12057.IBPluginDependency
+ 12058.IBPluginDependency
+ 12059.IBPluginDependency
+ 12144.IBPluginDependency
+ 12144.IBViewBoundsToFrameTransform
+ 12145.IBPluginDependency
+ 12146.IBPluginDependency
+ 12147.IBPluginDependency
+ 12148.IBEditorWindowLastContentRect
+ 12148.IBPluginDependency
+ 12149.IBPluginDependency
+ 12150.IBPluginDependency
+ 12151.IBPluginDependency
+ 12152.IBPluginDependency
+ 12153.IBPluginDependency
+ 12158.IBPluginDependency
+ 12159.IBPluginDependency
+ 12162.IBPluginDependency
+ 12163.IBPluginDependency
+ 12164.IBEditorWindowLastContentRect
+ 12164.IBPluginDependency
+ 12165.IBPluginDependency
+ 12166.IBPluginDependency
+ 12167.IBPluginDependency
+ 12168.IBPluginDependency
+ 12169.IBPluginDependency
+ 124.IBPluginDependency
+ 125.IBPluginDependency
+ 126.IBPluginDependency
+ 129.IBPluginDependency
+ 1298.IBEditorWindowLastContentRect
+ 1298.IBPersistedLastKnownCanvasPosition
+ 1298.IBPluginDependency
+ 1299.IBAttributePlaceholdersKey
+ 1299.IBPluginDependency
+ 130.IBPluginDependency
+ 1300.IBPluginDependency
+ 131.IBPluginDependency
+ 134.IBPluginDependency
+ 136.IBPluginDependency
+ 143.IBPluginDependency
+ 144.IBPluginDependency
+ 145.IBPluginDependency
+ 149.IBPluginDependency
+ 150.IBPluginDependency
+ 1507.IBAttributePlaceholdersKey
+ 1507.IBPluginDependency
+ 1508.IBPluginDependency
+ 1509.IBEditorWindowLastContentRect
+ 1509.IBPluginDependency
+ 1510.IBPluginDependency
+ 1511.IBPluginDependency
+ 1512.IBPluginDependency
+ 1525.IBAttributePlaceholdersKey
+ 1525.IBPluginDependency
+ 1526.IBPluginDependency
+ 1527.IBPluginDependency
+ 1528.IBPluginDependency
+ 1529.IBPluginDependency
+ 1530.IBPluginDependency
+ 1531.IBPluginDependency
+ 1532.IBPluginDependency
+ 1538.IBPluginDependency
+ 1541.IBPluginDependency
+ 1542.IBPluginDependency
+ 1543.IBEditorWindowLastContentRect
+ 1543.IBPluginDependency
+ 1544.IBPluginDependency
+ 1545.IBPluginDependency
+ 1577.IBAttributePlaceholdersKey
+ 1577.IBPluginDependency
+ 1578.IBPluginDependency
+ 1579.IBNumberFormatterBehaviorMetadataKey
+ 1579.IBNumberFormatterLocalizesFormatMetadataKey
+ 1579.IBNumberFormatterSampleNumberKey
+ 1579.IBPluginDependency
+ 1580.IBPluginDependency
+ 1581.IBPluginDependency
+ 1584.IBEditorWindowLastContentRect
+ 1584.IBPersistedLastKnownCanvasPosition
+ 1584.IBPluginDependency
+ 1615.IBAttributePlaceholdersKey
+ 1615.IBNSViewMetadataGestureRecognizers
+ 1615.IBPluginDependency
+ 1615.IBViewBoundsToFrameTransform
+ 1616.IBPluginDependency
+ 1619.IBPluginDependency
+ 1620.IBPluginDependency
+ 1621.IBPluginDependency
+ 1626.IBAttributePlaceholdersKey
+ 1626.IBPluginDependency
+ 1626.IBViewBoundsToFrameTransform
+ 1627.IBPluginDependency
+ 1628.IBPluginDependency
+ 1629.IBPluginDependency
+ 1630.IBPluginDependency
+ 1631.IBPluginDependency
+ 1634.IBPluginDependency
+ 1635.IBPluginDependency
+ 1636.IBPluginDependency
+ 1637.IBPluginDependency
+ 1638.IBPluginDependency
+ 1639.IBPluginDependency
+ 1640.IBPluginDependency
+ 1641.IBPluginDependency
+ 1643.IBPluginDependency
+ 1646.IBPluginDependency
+ 1647.IBPluginDependency
+ 1650.IBPluginDependency
+ 1651.IBPluginDependency
+ 1679.IBPluginDependency
+ 1679.toolbarItem.selectable
+ 1680.IBPluginDependency
+ 1680.toolbarItem.selectable
+ 1681.IBPluginDependency
+ 1681.toolbarItem.selectable
+ 1682.IBPluginDependency
+ 1721.IBPluginDependency
+ 1855.IBPluginDependency
+ 1856.IBEditorWindowLastContentRect
+ 1856.IBPluginDependency
+ 1856.IBWindowTemplateEditedContentRect
+ 1856.NSWindowTemplate.visibleAtLaunch
+ 1857.IBPluginDependency
+ 1858.IBPluginDependency
+ 1859.IBPluginDependency
+ 19.IBPluginDependency
+ 1976.IBPluginDependency
+ 1977.IBPluginDependency
+ 1978.IBPluginDependency
+ 1979.IBPluginDependency
+ 1980.IBPluginDependency
+ 1981.IBPluginDependency
+ 1982.IBPluginDependency
+ 1983.IBPluginDependency
+ 1986.IBPluginDependency
+ 1987.IBPluginDependency
+ 1988.IBPluginDependency
+ 1998.IBPluginDependency
+ 1999.IBPluginDependency
+ 2000.IBNumberFormatterBehaviorMetadataKey
+ 2000.IBNumberFormatterLocalizesFormatMetadataKey
+ 2000.IBPluginDependency
+ 2095.IBPluginDependency
+ 2098.IBPluginDependency
+ 2154.IBPluginDependency
+ 2154.IBViewBoundsToFrameTransform
+ 2155.IBPluginDependency
+ 2246.IBPluginDependency
+ 2246.toolbarItem.selectable
+ 2248.IBEditorWindowLastContentRect
+ 2248.IBPersistedLastKnownCanvasPosition
+ 2248.IBPluginDependency
+ 2250.IBPluginDependency
+ 2253.IBAttributePlaceholdersKey
+ 2253.IBPluginDependency
+ 2254.IBPluginDependency
+ 2257.IBPluginDependency
+ 2258.IBPluginDependency
+ 2262.IBNumberFormatterBehaviorMetadataKey
+ 2262.IBNumberFormatterLocalizesFormatMetadataKey
+ 2262.IBPluginDependency
+ 2265.IBPluginDependency
+ 2266.IBPluginDependency
+ 2287.IBPluginDependency
+ 2288.IBPluginDependency
+ 2289.IBPluginDependency
+ 2290.IBPluginDependency
+ 2291.IBPluginDependency
+ 2292.IBPluginDependency
+ 2293.IBPluginDependency
+ 2294.IBEditorWindowLastContentRect
+ 2294.IBPluginDependency
+ 2297.IBAttributePlaceholdersKey
+ 2297.IBPluginDependency
+ 2298.IBAttributePlaceholdersKey
+ 2298.IBPluginDependency
+ 2299.IBPluginDependency
+ 23.IBPluginDependency
+ 2327.IBPluginDependency
+ 2328.IBPluginDependency
+ 2329.IBAttributePlaceholdersKey
+ 2329.IBPluginDependency
+ 2330.IBAttributePlaceholdersKey
+ 2330.IBPluginDependency
+ 2331.IBPluginDependency
+ 2332.IBAttributePlaceholdersKey
+ 2332.IBPluginDependency
+ 2339.IBEditorWindowLastContentRect
+ 2339.IBNSViewMetadataGestureRecognizers
+ 2339.IBPersistedLastKnownCanvasPosition
+ 2339.IBPluginDependency
+ 2340.IBPluginDependency
+ 2340.toolbarItem.selectable
+ 2341.IBPluginDependency
+ 2341.IBViewBoundsToFrameTransform
+ 2342.IBPluginDependency
+ 2343.IBPluginDependency
+ 2344.IBPluginDependency
+ 2345.IBAttributePlaceholdersKey
+ 2345.IBPluginDependency
+ 2346.IBPluginDependency
+ 2347.IBAttributePlaceholdersKey
+ 2347.IBPluginDependency
+ 2348.IBPluginDependency
+ 2349.IBPluginDependency
+ 2350.IBPluginDependency
+ 2353.IBPluginDependency
+ 2354.IBPluginDependency
+ 2355.IBPluginDependency
+ 2356.IBPluginDependency
+ 2357.IBPluginDependency
+ 2358.IBPluginDependency
+ 2359.IBPluginDependency
+ 236.IBPluginDependency
+ 2360.IBPluginDependency
+ 2361.IBPluginDependency
+ 2362.IBPluginDependency
+ 2363.IBAttributePlaceholdersKey
+ 2363.IBPluginDependency
+ 2364.IBPluginDependency
+ 2365.IBAttributePlaceholdersKey
+ 2365.IBPluginDependency
+ 2366.IBPluginDependency
+ 2367.IBAttributePlaceholdersKey
+ 2367.IBPluginDependency
+ 2368.IBPluginDependency
+ 2369.IBAttributePlaceholdersKey
+ 2369.IBPluginDependency
+ 2370.IBPluginDependency
+ 2371.IBAttributePlaceholdersKey
+ 2371.IBPluginDependency
+ 2372.IBPluginDependency
+ 2373.IBPluginDependency
+ 2374.IBPluginDependency
+ 2375.IBPluginDependency
+ 2376.IBPluginDependency
+ 2377.IBPluginDependency
+ 2378.IBPluginDependency
+ 2382.IBPluginDependency
+ 2383.IBPluginDependency
+ 2384.IBPluginDependency
+ 2385.IBPluginDependency
+ 2386.IBPluginDependency
+ 2387.IBPluginDependency
+ 2388.IBPluginDependency
+ 2389.IBPluginDependency
+ 239.IBPluginDependency
+ 2390.IBPluginDependency
+ 2391.IBPluginDependency
+ 2392.IBPluginDependency
+ 2393.IBPluginDependency
+ 2394.IBPluginDependency
+ 2395.IBPluginDependency
+ 2396.IBPluginDependency
+ 2397.IBPluginDependency
+ 2398.IBPluginDependency
+ 2399.IBPluginDependency
+ 24.IBEditorWindowLastContentRect
+ 24.IBPluginDependency
+ 2427.IBAttributePlaceholdersKey
+ 2427.IBPluginDependency
+ 2428.IBPluginDependency
+ 2429.IBAttributePlaceholdersKey
+ 2429.IBPluginDependency
+ 2430.IBPluginDependency
+ 2431.IBPluginDependency
+ 2432.IBPluginDependency
+ 2433.IBPluginDependency
+ 2434.IBAttributePlaceholdersKey
+ 2434.IBPluginDependency
+ 2435.IBAttributePlaceholdersKey
+ 2435.IBPluginDependency
+ 2436.IBAttributePlaceholdersKey
+ 2436.IBPluginDependency
+ 2437.IBPluginDependency
+ 2438.IBAttributePlaceholdersKey
+ 2438.IBPluginDependency
+ 2439.IBAttributePlaceholdersKey
+ 2439.IBPluginDependency
+ 2440.IBPluginDependency
+ 2482.IBPluginDependency
+ 2483.IBPluginDependency
+ 2518.IBPluginDependency
+ 2519.IBPluginDependency
+ 2556.IBPluginDependency
+ 2565.IBAttributePlaceholdersKey
+ 2565.IBPluginDependency
+ 2566.IBPluginDependency
+ 2604.IBPluginDependency
+ 2609.IBPluginDependency
+ 2610.IBPluginDependency
+ 2653.IBPluginDependency
+ 2809.IBPluginDependency
+ 2810.IBPluginDependency
+ 2811.IBPluginDependency
+ 2812.IBPluginDependency
+ 2813.IBPluginDependency
+ 2814.IBPluginDependency
+ 2815.IBPluginDependency
+ 2816.IBPluginDependency
+ 2817.IBPluginDependency
+ 2818.IBPluginDependency
+ 2819.IBPluginDependency
+ 2820.IBPluginDependency
+ 2847.IBPluginDependency
+ 2847.IBWindowTemplateEditedContentRect
+ 2847.NSWindowTemplate.visibleAtLaunch
+ 2848.IBPluginDependency
+ 2894.IBPluginDependency
+ 2895.IBPluginDependency
+ 2896.IBPluginDependency
+ 2897.IBPluginDependency
+ 29.IBEditorWindowLastContentRect
+ 29.IBPluginDependency
+ 2900.IBPluginDependency
+ 2901.IBPluginDependency
+ 2902.IBPluginDependency
+ 2903.IBPluginDependency
+ 295.IBPluginDependency
+ 296.IBEditorWindowLastContentRect
+ 296.IBPluginDependency
+ 297.IBPluginDependency
+ 298.IBPluginDependency
+ 3059.IBPluginDependency
+ 3060.IBPluginDependency
+ 3061.IBPluginDependency
+ 3062.IBPluginDependency
+ 3063.IBPluginDependency
+ 3146.IBPluginDependency
+ 3148.IBPluginDependency
+ 3204.IBPluginDependency
+ 3205.IBEditorWindowLastContentRect
+ 3205.IBPluginDependency
+ 3206.IBPluginDependency
+ 3207.IBPluginDependency
+ 3208.IBPluginDependency
+ 3209.IBPluginDependency
+ 3210.IBPluginDependency
+ 3211.IBPluginDependency
+ 3213.IBPluginDependency
+ 3214.IBPluginDependency
+ 3456.IBEditorWindowLastContentRect
+ 3456.IBPluginDependency
+ 3456.IBWindowTemplateEditedContentRect
+ 3456.NSWindowTemplate.visibleAtLaunch
+ 3457.IBPluginDependency
+ 3458.IBPluginDependency
+ 3459.IBPluginDependency
+ 3460.IBPluginDependency
+ 3461.IBPluginDependency
+ 3462.IBPluginDependency
+ 3463.IBPluginDependency
+ 3464.IBPluginDependency
+ 3465.IBPluginDependency
+ 3471.IBPluginDependency
+ 3472.IBPluginDependency
+ 3480.IBPluginDependency
+ 3480.IBViewBoundsToFrameTransform
+ 3481.IBPluginDependency
+ 3482.IBPluginDependency
+ 3488.IBEditorWindowLastContentRect
+ 3488.IBPluginDependency
+ 3488.IBWindowTemplateEditedContentRect
+ 3488.NSWindowTemplate.visibleAtLaunch
+ 3489.IBPluginDependency
+ 3496.IBPluginDependency
+ 3497.IBPluginDependency
+ 3498.IBPluginDependency
+ 3499.IBPluginDependency
+ 3501.IBPluginDependency
+ 3507.IBPluginDependency
+ 3508.IBPluginDependency
+ 3509.IBPluginDependency
+ 3516.IBPluginDependency
+ 3517.IBPluginDependency
+ 3520.IBPluginDependency
+ 3522.IBPluginDependency
+ 3523.IBPluginDependency
+ 3644.IBPluginDependency
+ 3648.IBPluginDependency
+ 3648.IBViewBoundsToFrameTransform
+ 3649.IBPluginDependency
+ 3650.IBPluginDependency
+ 3651.IBPluginDependency
+ 3652.IBPluginDependency
+ 3653.IBPluginDependency
+ 3654.IBPluginDependency
+ 3655.IBPluginDependency
+ 3656.IBPluginDependency
+ 3657.IBPluginDependency
+ 3658.IBPluginDependency
+ 3659.IBPluginDependency
+ 3660.IBPluginDependency
+ 3661.IBPluginDependency
+ 3662.IBPluginDependency
+ 3663.IBPluginDependency
+ 3664.IBPluginDependency
+ 3665.IBPluginDependency
+ 3666.IBPluginDependency
+ 3667.IBPluginDependency
+ 3709.IBPluginDependency
+ 3712.IBEditorWindowLastContentRect
+ 3712.IBPersistedLastKnownCanvasPosition
+ 3712.IBPluginDependency
+ 3712.IBWindowTemplateEditedContentRect
+ 3712.NSWindowTemplate.visibleAtLaunch
+ 3713.IBPluginDependency
+ 3714.IBAttributePlaceholdersKey
+ 3714.IBPluginDependency
+ 3715.IBPluginDependency
+ 3716.IBPluginDependency
+ 3716.IBViewBoundsToFrameTransform
+ 3717.IBPluginDependency
+ 3717.IBViewBoundsToFrameTransform
+ 3718.IBPluginDependency
+ 3719.IBAttributePlaceholdersKey
+ 3719.IBPluginDependency
+ 3720.IBAttributePlaceholdersKey
+ 3720.IBPluginDependency
+ 3721.IBPluginDependency
+ 3722.IBPluginDependency
+ 3723.IBAttributePlaceholdersKey
+ 3723.IBPluginDependency
+ 3724.IBAttributePlaceholdersKey
+ 3724.IBPluginDependency
+ 3725.IBPluginDependency
+ 3732.IBAttributePlaceholdersKey
+ 3732.IBPluginDependency
+ 3733.IBPluginDependency
+ 3736.IBAttributePlaceholdersKey
+ 3736.IBPluginDependency
+ 3737.IBPluginDependency
+ 3738.IBPluginDependency
+ 3739.IBPluginDependency
+ 3740.IBPluginDependency
+ 3741.IBNumberFormatterBehaviorMetadataKey
+ 3741.IBNumberFormatterLocalizesFormatMetadataKey
+ 3741.IBPluginDependency
+ 3742.IBPluginDependency
+ 3747.IBPluginDependency
+ 3748.IBPluginDependency
+ 3749.IBPluginDependency
+ 3751.IBPluginDependency
+ 3752.IBPluginDependency
+ 3771.IBAttributePlaceholdersKey
+ 3771.IBPluginDependency
+ 3772.IBPluginDependency
+ 3773.IBAttributePlaceholdersKey
+ 3773.IBPluginDependency
+ 3773.IBViewBoundsToFrameTransform
+ 3774.IBPluginDependency
+ 3775.IBAttributePlaceholdersKey
+ 3775.IBPluginDependency
+ 3775.IBViewBoundsToFrameTransform
+ 3776.IBPluginDependency
+ 3777.IBAttributePlaceholdersKey
+ 3777.IBPluginDependency
+ 3777.IBViewBoundsToFrameTransform
+ 3778.IBPluginDependency
+ 3784.IBNSViewMetadataGestureRecognizers
+ 3784.IBPluginDependency
+ 3784.IBViewBoundsToFrameTransform
+ 3786.IBNSViewMetadataGestureRecognizers
+ 3786.IBPluginDependency
+ 3786.IBViewBoundsToFrameTransform
+ 3787.IBPluginDependency
+ 3788.IBNSViewMetadataGestureRecognizers
+ 3788.IBPluginDependency
+ 3789.IBPluginDependency
+ 3790.IBEditorWindowLastContentRect
+ 3790.IBPersistedLastKnownCanvasPosition
+ 3790.IBPluginDependency
+ 3790.IBWindowTemplateEditedContentRect
+ 3790.NSWindowTemplate.visibleAtLaunch
+ 3791.IBPluginDependency
+ 3793.IBPluginDependency
+ 3793.IBViewBoundsToFrameTransform
+ 3794.IBPluginDependency
+ 3798.IBNSViewMetadataGestureRecognizers
+ 3798.IBPluginDependency
+ 3798.IBViewBoundsToFrameTransform
+ 3801.IBAttributePlaceholdersKey
+ 3801.IBPluginDependency
+ 3802.IBAttributePlaceholdersKey
+ 3802.IBPluginDependency
+ 3802.IBViewBoundsToFrameTransform
+ 3803.IBAttributePlaceholdersKey
+ 3803.IBPluginDependency
+ 3803.IBViewBoundsToFrameTransform
+ 3804.IBAttributePlaceholdersKey
+ 3804.IBPluginDependency
+ 3804.IBViewBoundsToFrameTransform
+ 3805.IBPluginDependency
+ 3806.IBPluginDependency
+ 3807.IBPluginDependency
+ 3808.IBPluginDependency
+ 3837.IBPluginDependency
+ 3837.IBViewBoundsToFrameTransform
+ 3838.IBPluginDependency
+ 3839.IBAttributePlaceholdersKey
+ 3839.IBPluginDependency
+ 3840.IBAttributePlaceholdersKey
+ 3840.IBPluginDependency
+ 3841.IBPluginDependency
+ 3843.IBAttributePlaceholdersKey
+ 3843.IBPluginDependency
+ 3843.IBViewBoundsToFrameTransform
+ 3844.IBPluginDependency
+ 3845.IBPluginDependency
+ 3846.IBAttributePlaceholdersKey
+ 3846.IBPluginDependency
+ 3847.IBAttributePlaceholdersKey
+ 3847.IBPluginDependency
+ 3849.IBPluginDependency
+ 3849.IBViewBoundsToFrameTransform
+ 3850.IBPluginDependency
+ 3885.IBNSViewMetadataGestureRecognizers
+ 3885.IBPluginDependency
+ 3885.IBViewBoundsToFrameTransform
+ 3886.IBAttributePlaceholdersKey
+ 3886.IBPluginDependency
+ 3887.IBPluginDependency
+ 3888.IBAttributePlaceholdersKey
+ 3888.IBPluginDependency
+ 3888.IBViewBoundsToFrameTransform
+ 3889.IBPluginDependency
+ 3890.IBPluginDependency
+ 3891.IBAttributePlaceholdersKey
+ 3891.IBPluginDependency
+ 3892.IBAttributePlaceholdersKey
+ 3892.IBPluginDependency
+ 3893.IBAttributePlaceholdersKey
+ 3893.IBPluginDependency
+ 3894.IBAttributePlaceholdersKey
+ 3894.IBPluginDependency
+ 3896.IBPluginDependency
+ 3896.IBViewBoundsToFrameTransform
+ 3897.IBPluginDependency
+ 3899.IBNSViewMetadataGestureRecognizers
+ 3899.IBPluginDependency
+ 3899.IBViewBoundsToFrameTransform
+ 3900.IBAttributePlaceholdersKey
+ 3900.IBPluginDependency
+ 3901.IBPluginDependency
+ 3935.IBPluginDependency
+ 3936.IBEditorWindowLastContentRect
+ 3936.IBPluginDependency
+ 3937.IBPluginDependency
+ 3938.IBPluginDependency
+ 3939.IBPluginDependency
+ 3959.IBPluginDependency
+ 3965.IBPluginDependency
+ 3966.IBAttributePlaceholdersKey
+ 3966.IBPluginDependency
+ 3967.IBAttributePlaceholdersKey
+ 3967.IBPluginDependency
+ 3968.IBPluginDependency
+ 3969.IBAttributePlaceholdersKey
+ 3969.IBPluginDependency
+ 3992.IBPluginDependency
+ 3993.IBPluginDependency
+ 3994.IBAttributePlaceholdersKey
+ 3994.IBPluginDependency
+ 3995.IBPluginDependency
+ 3996.IBPluginDependency
+ 3997.IBAttributePlaceholdersKey
+ 3997.IBPluginDependency
+ 3998.IBAttributePlaceholdersKey
+ 3998.IBPluginDependency
+ 4001.IBPluginDependency
+ 4002.IBAttributePlaceholdersKey
+ 4002.IBPluginDependency
+ 4003.IBAttributePlaceholdersKey
+ 4003.IBPluginDependency
+ 4004.IBPluginDependency
+ 4024.IBPluginDependency
+ 4027.IBEditorWindowLastContentRect
+ 4027.IBPluginDependency
+ 4027.IBWindowTemplateEditedContentRect
+ 4027.NSWindowTemplate.visibleAtLaunch
+ 4028.IBPluginDependency
+ 4029.IBPluginDependency
+ 4030.IBAttributePlaceholdersKey
+ 4030.IBPluginDependency
+ 4031.IBPluginDependency
+ 4032.IBPluginDependency
+ 4033.IBAttributePlaceholdersKey
+ 4033.IBPluginDependency
+ 4034.IBPluginDependency
+ 4035.IBAttributePlaceholdersKey
+ 4035.IBPluginDependency
+ 4036.IBPluginDependency
+ 4037.IBAttributePlaceholdersKey
+ 4037.IBPluginDependency
+ 4038.IBPluginDependency
+ 4039.IBPluginDependency
+ 4040.IBPluginDependency
+ 4041.IBPluginDependency
+ 4043.IBAttributePlaceholdersKey
+ 4043.IBPluginDependency
+ 4044.IBPluginDependency
+ 4045.IBAttributePlaceholdersKey
+ 4045.IBPluginDependency
+ 4046.IBPluginDependency
+ 4047.IBPluginDependency
+ 4048.IBAttributePlaceholdersKey
+ 4048.IBPluginDependency
+ 4049.IBPluginDependency
+ 4050.IBAttributePlaceholdersKey
+ 4050.IBPluginDependency
+ 4051.IBPluginDependency
+ 4053.IBEditorWindowLastContentRect
+ 4053.IBPluginDependency
+ 4054.IBPluginDependency
+ 4059.IBPluginDependency
+ 4059.IBViewBoundsToFrameTransform
+ 4060.IBPluginDependency
+ 4062.IBPluginDependency
+ 4066.IBPluginDependency
+ 4067.IBPluginDependency
+ 4069.IBAttributePlaceholdersKey
+ 4069.IBPluginDependency
+ 4070.IBAttributePlaceholdersKey
+ 4070.IBPluginDependency
+ 4071.IBPluginDependency
+ 4072.IBPluginDependency
+ 4073.IBPluginDependency
+ 4074.IBPluginDependency
+ 4075.IBPluginDependency
+ 4076.IBPluginDependency
+ 4078.IBPluginDependency
+ 4079.IBPluginDependency
+ 4080.IBPluginDependency
+ 4081.IBPluginDependency
+ 4082.IBPluginDependency
+ 4083.IBPluginDependency
+ 4084.IBPluginDependency
+ 4085.IBPluginDependency
+ 4086.IBPluginDependency
+ 4087.IBPluginDependency
+ 4088.IBPluginDependency
+ 4089.IBPluginDependency
+ 4090.IBPluginDependency
+ 4091.IBPluginDependency
+ 4092.IBPluginDependency
+ 4093.IBPluginDependency
+ 4094.IBPluginDependency
+ 4095.IBPluginDependency
+ 4096.IBPluginDependency
+ 4097.IBPluginDependency
+ 4098.IBPluginDependency
+ 4099.IBPluginDependency
+ 4100.IBPluginDependency
+ 4101.IBPluginDependency
+ 4102.IBPluginDependency
+ 4103.IBPluginDependency
+ 4104.IBPluginDependency
+ 4105.IBPluginDependency
+ 4106.IBPluginDependency
+ 4107.IBPluginDependency
+ 4109.IBPluginDependency
+ 4110.IBPluginDependency
+ 4111.IBPluginDependency
+ 4112.IBPluginDependency
+ 4113.IBPluginDependency
+ 4114.IBPluginDependency
+ 4115.IBPluginDependency
+ 4116.IBPluginDependency
+ 4179.IBPluginDependency
+ 4180.IBPluginDependency
+ 4181.IBEditorWindowLastContentRect
+ 4181.IBPluginDependency
+ 4181.IBWindowTemplateEditedContentRect
+ 4181.NSWindowTemplate.visibleAtLaunch
+ 4182.IBPluginDependency
+ 4191.IBAttributePlaceholdersKey
+ 4191.IBPluginDependency
+ 4192.IBAttributePlaceholdersKey
+ 4192.IBPluginDependency
+ 4193.IBPluginDependency
+ 4194.IBPluginDependency
+ 4195.IBPluginDependency
+ 4196.IBPluginDependency
+ 4197.IBPluginDependency
+ 4198.IBPluginDependency
+ 4199.IBPluginDependency
+ 4200.IBPluginDependency
+ 4201.IBPluginDependency
+ 4202.IBPluginDependency
+ 4203.IBPluginDependency
+ 4204.IBPluginDependency
+ 4205.IBPluginDependency
+ 4206.IBPluginDependency
+ 4207.IBPluginDependency
+ 4208.IBPluginDependency
+ 4209.IBPluginDependency
+ 4210.IBPluginDependency
+ 4211.IBPluginDependency
+ 4212.IBPluginDependency
+ 4213.IBPluginDependency
+ 4214.IBPluginDependency
+ 4215.IBPluginDependency
+ 4216.IBPluginDependency
+ 4217.IBPluginDependency
+ 4218.IBPluginDependency
+ 4219.IBPluginDependency
+ 4220.IBPluginDependency
+ 4221.IBPluginDependency
+ 4222.IBPluginDependency
+ 4223.IBPluginDependency
+ 4224.IBPluginDependency
+ 4225.IBPluginDependency
+ 4226.IBPluginDependency
+ 4227.IBPluginDependency
+ 4228.IBPluginDependency
+ 4229.IBPluginDependency
+ 4230.IBPluginDependency
+ 4231.IBPluginDependency
+ 4232.IBPluginDependency
+ 4233.IBPluginDependency
+ 4234.IBPluginDependency
+ 4240.IBPluginDependency
+ 4241.IBPluginDependency
+ 4275.IBPluginDependency
+ 4276.IBPluginDependency
+ 4277.IBPluginDependency
+ 4277.IBViewBoundsToFrameTransform
+ 4278.IBPluginDependency
+ 4559.IBPluginDependency
+ 4560.IBPluginDependency
+ 4561.IBPluginDependency
+ 4562.IBPluginDependency
+ 4565.IBPluginDependency
+ 4574.IBPluginDependency
+ 4575.IBPluginDependency
+ 4576.IBPluginDependency
+ 4577.IBPluginDependency
+ 4578.IBPluginDependency
+ 4580.IBPluginDependency
+ 4581.IBPluginDependency
+ 4582.IBPluginDependency
+ 4583.IBPluginDependency
+ 4584.IBPluginDependency
+ 4585.IBPluginDependency
+ 4586.IBPluginDependency
+ 4587.IBPluginDependency
+ 4588.IBAttributePlaceholdersKey
+ 4588.IBPluginDependency
+ 4589.IBPluginDependency
+ 4590.IBAttributePlaceholdersKey
+ 4590.IBPluginDependency
+ 4593.IBPluginDependency
+ 4594.IBPluginDependency
+ 4597.IBPluginDependency
+ 4598.IBPluginDependency
+ 4599.IBPluginDependency
+ 4600.IBPluginDependency
+ 4601.IBAttributePlaceholdersKey
+ 4601.IBPluginDependency
+ 4602.IBPluginDependency
+ 4603.IBPluginDependency
+ 4604.IBPluginDependency
+ 4605.IBPluginDependency
+ 4606.IBPluginDependency
+ 4607.IBPluginDependency
+ 4610.IBEditorWindowLastContentRect
+ 4610.IBPluginDependency
+ 4632.IBPluginDependency
+ 4633.IBPluginDependency
+ 4634.IBPluginDependency
+ 4635.IBPluginDependency
+ 4636.IBPluginDependency
+ 4637.IBPluginDependency
+ 4639.IBPluginDependency
+ 4640.IBPluginDependency
+ 4647.IBPluginDependency
+ 4656.IBPluginDependency
+ 4660.IBPluginDependency
+ 4661.IBPluginDependency
+ 4662.IBPluginDependency
+ 4663.IBPluginDependency
+ 4664.IBPluginDependency
+ 4665.IBPluginDependency
+ 4673.IBPluginDependency
+ 4693.IBPluginDependency
+ 4694.IBPluginDependency
+ 4697.IBPluginDependency
+ 4711.IBPluginDependency
+ 4715.IBPluginDependency
+ 4731.IBPluginDependency
+ 4745.IBPluginDependency
+ 4746.IBPluginDependency
+ 4778.IBPluginDependency
+ 4792.IBPluginDependency
+ 4795.IBPluginDependency
+ 4796.IBPluginDependency
+ 4797.IBPluginDependency
+ 4798.IBPluginDependency
+ 4799.IBPluginDependency
+ 4800.IBPluginDependency
+ 4801.IBPluginDependency
+ 4802.IBPluginDependency
+ 4809.IBPluginDependency
+ 4810.IBPluginDependency
+ 4811.IBPluginDependency
+ 4812.IBPluginDependency
+ 4814.IBAttributePlaceholdersKey
+ 4814.IBPluginDependency
+ 4815.IBPluginDependency
+ 4817.IBPluginDependency
+ 4818.IBPluginDependency
+ 4822.IBAttributePlaceholdersKey
+ 4822.IBPluginDependency
+ 4823.IBPluginDependency
+ 4850.IBPluginDependency
+ 4851.IBPluginDependency
+ 4858.IBPluginDependency
+ 4859.IBPluginDependency
+ 4860.IBPluginDependency
+ 4861.IBPluginDependency
+ 4862.IBPluginDependency
+ 4863.IBPluginDependency
+ 4864.IBPluginDependency
+ 4865.IBPluginDependency
+ 4866.IBPluginDependency
+ 4867.IBPluginDependency
+ 4868.IBPluginDependency
+ 4869.IBPluginDependency
+ 4871.IBPluginDependency
+ 4872.IBPluginDependency
+ 4873.IBPluginDependency
+ 4874.IBPluginDependency
+ 4876.IBPluginDependency
+ 4877.IBPluginDependency
+ 4878.IBPluginDependency
+ 4879.IBPluginDependency
+ 4880.IBPluginDependency
+ 4887.IBPluginDependency
+ 4888.IBPluginDependency
+ 4889.IBPluginDependency
+ 4890.IBPluginDependency
+ 4891.IBPluginDependency
+ 4892.IBPluginDependency
+ 4899.IBPluginDependency
+ 490.IBPluginDependency
+ 4900.IBPluginDependency
+ 4901.IBPluginDependency
+ 4902.IBEditorWindowLastContentRect
+ 4902.IBPluginDependency
+ 4903.IBAttributePlaceholdersKey
+ 4903.IBPluginDependency
+ 4904.IBAttributePlaceholdersKey
+ 4904.IBPluginDependency
+ 4906.IBPluginDependency
+ 4907.IBPluginDependency
+ 4908.IBPluginDependency
+ 4909.IBPluginDependency
+ 491.IBEditorWindowLastContentRect
+ 491.IBPluginDependency
+ 4910.IBAttributePlaceholdersKey
+ 4910.IBPluginDependency
+ 4911.IBPluginDependency
+ 4912.IBEditorWindowLastContentRect
+ 4912.IBPluginDependency
+ 4913.IBPluginDependency
+ 4914.IBPluginDependency
+ 4916.IBPluginDependency
+ 492.IBPluginDependency
+ 494.IBPluginDependency
+ 4947.IBPluginDependency
+ 5.IBPluginDependency
+ 5003.IBPluginDependency
+ 5004.IBPluginDependency
+ 5005.IBPluginDependency
+ 5006.IBPluginDependency
+ 5007.IBPluginDependency
+ 5008.IBPluginDependency
+ 5009.IBPluginDependency
+ 5066.IBPluginDependency
+ 5067.IBPluginDependency
+ 5068.IBAttributePlaceholdersKey
+ 5068.IBPluginDependency
+ 5069.IBPluginDependency
+ 5080.IBPluginDependency
+ 5080.IBWindowTemplateEditedContentRect
+ 5080.NSWindowTemplate.visibleAtLaunch
+ 5080.windowTemplate.hasMinSize
+ 5080.windowTemplate.minSize
+ 5081.IBPluginDependency
+ 5082.IBPluginDependency
+ 5083.IBPluginDependency
+ 5084.IBPluginDependency
+ 5085.IBPluginDependency
+ 5086.IBPluginDependency
+ 5087.IBPluginDependency
+ 5088.IBPluginDependency
+ 5089.IBPluginDependency
+ 5097.IBPluginDependency
+ 5098.IBPluginDependency
+ 5099.IBPluginDependency
+ 5100.IBPluginDependency
+ 5101.IBPluginDependency
+ 5102.IBPluginDependency
+ 5103.IBPluginDependency
+ 5104.IBPluginDependency
+ 5105.IBPluginDependency
+ 5106.IBPluginDependency
+ 5107.IBPluginDependency
+ 5111.IBPluginDependency
+ 5112.IBPluginDependency
+ 5115.IBPluginDependency
+ 5127.IBPluginDependency
+ 5128.IBPluginDependency
+ 5133.IBPluginDependency
+ 5134.IBPluginDependency
+ 5135.IBPluginDependency
+ 5136.IBPluginDependency
+ 5140.IBPluginDependency
+ 5141.IBPluginDependency
+ 5168.IBPluginDependency
+ 5169.IBPluginDependency
+ 5171.IBPluginDependency
+ 5172.IBPluginDependency
+ 5173.IBPluginDependency
+ 5174.IBPluginDependency
+ 5175.IBPluginDependency
+ 5176.IBPluginDependency
+ 5177.IBPluginDependency
+ 5178.IBPluginDependency
+ 5179.IBPluginDependency
+ 5186.IBPluginDependency
+ 5188.IBAttributePlaceholdersKey
+ 5188.IBPluginDependency
+ 5189.IBPluginDependency
+ 5193.IBNumberFormatterBehaviorMetadataKey
+ 5193.IBNumberFormatterLocalizesFormatMetadataKey
+ 5193.IBPluginDependency
+ 5329.IBPluginDependency
+ 534.IBPluginDependency
+ 535.IBPluginDependency
+ 538.IBPluginDependency
+ 539.IBPluginDependency
+ 541.IBPluginDependency
+ 5419.IBPluginDependency
+ 542.IBPluginDependency
+ 5420.IBPluginDependency
+ 5421.IBPluginDependency
+ 5427.IBAttributePlaceholdersKey
+ 5427.IBPluginDependency
+ 5450.IBPluginDependency
+ 56.IBPluginDependency
+ 5648.IBPluginDependency
+ 5649.IBPluginDependency
+ 5651.IBEditorWindowLastContentRect
+ 5651.IBPluginDependency
+ 5651.IBWindowTemplateEditedContentRect
+ 5651.NSWindowTemplate.visibleAtLaunch
+ 5652.IBPluginDependency
+ 5653.IBPluginDependency
+ 5654.IBAttributePlaceholdersKey
+ 5654.IBPluginDependency
+ 5658.IBPluginDependency
+ 5659.IBPluginDependency
+ 5660.IBPluginDependency
+ 5661.IBPluginDependency
+ 5665.IBPluginDependency
+ 5666.IBPluginDependency
+ 5667.IBPluginDependency
+ 5668.IBPluginDependency
+ 5669.IBPluginDependency
+ 5670.IBPluginDependency
+ 5671.IBPluginDependency
+ 5672.IBPluginDependency
+ 5673.IBPluginDependency
+ 5674.IBPluginDependency
+ 5675.IBPluginDependency
+ 5676.IBPluginDependency
+ 5677.IBPluginDependency
+ 5678.IBPluginDependency
+ 5679.IBPluginDependency
+ 5680.IBPluginDependency
+ 5681.IBPluginDependency
+ 5682.IBPluginDependency
+ 5683.IBPluginDependency
+ 5684.IBPluginDependency
+ 5685.IBPluginDependency
+ 5686.IBPluginDependency
+ 5687.IBPluginDependency
+ 5688.IBPluginDependency
+ 5689.IBPluginDependency
+ 57.IBEditorWindowLastContentRect
+ 57.IBPluginDependency
+ 5702.IBPluginDependency
+ 5713.IBPluginDependency
+ 575.IBPluginDependency
+ 576.IBEditorWindowLastContentRect
+ 576.IBPluginDependency
+ 58.IBPluginDependency
+ 5933.IBPluginDependency
+ 5934.IBPluginDependency
+ 5935.IBPluginDependency
+ 5936.IBPluginDependency
+ 5937.IBPluginDependency
+ 5938.IBPluginDependency
+ 5939.IBPluginDependency
+ 594.IBPluginDependency
+ 5942.IBPluginDependency
+ 596.IBPluginDependency
+ 5963.IBPluginDependency
+ 607.IBPluginDependency
+ 608.IBEditorWindowLastContentRect
+ 608.IBPluginDependency
+ 6126.IBNSViewMetadataGestureRecognizers
+ 6126.IBPluginDependency
+ 6127.IBPluginDependency
+ 6128.IBAttributePlaceholdersKey
+ 6128.IBPluginDependency
+ 6129.IBAttributePlaceholdersKey
+ 6129.IBPluginDependency
+ 6130.IBPluginDependency
+ 6131.IBPluginDependency
+ 6132.IBPluginDependency
+ 6133.IBAttributePlaceholdersKey
+ 6133.IBPluginDependency
+ 6134.IBAttributePlaceholdersKey
+ 6134.IBPluginDependency
+ 6135.IBPluginDependency
+ 6168.IBPluginDependency
+ 6169.IBEditorWindowLastContentRect
+ 6169.IBPluginDependency
+ 6170.IBPluginDependency
+ 6171.IBPluginDependency
+ 6172.IBEditorWindowLastContentRect
+ 6172.IBPluginDependency
+ 6173.IBPluginDependency
+ 6174.IBPluginDependency
+ 6177.IBPluginDependency
+ 6180.IBPluginDependency
+ 6180.IBViewBoundsToFrameTransform
+ 6233.IBAttributePlaceholdersKey
+ 6233.IBPluginDependency
+ 6234.IBAttributePlaceholdersKey
+ 6234.IBPluginDependency
+ 6238.IBPluginDependency
+ 627.IBEditorWindowLastContentRect
+ 627.IBPluginDependency
+ 627.IBWindowTemplateEditedContentRect
+ 627.NSWindowTemplate.visibleAtLaunch
+ 628.IBPluginDependency
+ 629.IBEditorWindowLastContentRect
+ 629.IBPluginDependency
+ 6295.IBPluginDependency
+ 6295.IBWindowTemplateEditedContentRect
+ 6295.NSWindowTemplate.visibleAtLaunch
+ 6295.windowTemplate.hasMaxSize
+ 6295.windowTemplate.hasMinSize
+ 6295.windowTemplate.maxSize
+ 6295.windowTemplate.minSize
+ 6296.IBPluginDependency
+ 634.IBPluginDependency
+ 635.IBPluginDependency
+ 6352.IBEditorWindowLastContentRect
+ 6352.IBPluginDependency
+ 6353.IBPluginDependency
+ 6354.IBPluginDependency
+ 6355.IBPluginDependency
+ 6356.IBPluginDependency
+ 6357.IBPluginDependency
+ 6358.IBPluginDependency
+ 6359.IBPluginDependency
+ 6360.IBPluginDependency
+ 6361.IBPluginDependency
+ 6362.IBPluginDependency
+ 6363.IBPluginDependency
+ 6364.IBPluginDependency
+ 6365.IBPluginDependency
+ 6366.IBPluginDependency
+ 6368.IBPluginDependency
+ 6369.IBPluginDependency
+ 6374.IBPluginDependency
+ 6376.IBPluginDependency
+ 6377.IBPluginDependency
+ 6378.IBPluginDependency
+ 6379.IBPluginDependency
+ 6380.IBPluginDependency
+ 6381.IBPluginDependency
+ 6382.IBPluginDependency
+ 6383.IBPluginDependency
+ 6384.IBPluginDependency
+ 6385.IBPluginDependency
+ 6386.IBPluginDependency
+ 6387.IBPluginDependency
+ 6388.IBEditorWindowLastContentRect
+ 6388.IBPluginDependency
+ 6389.IBPluginDependency
+ 6390.IBPluginDependency
+ 6391.IBPluginDependency
+ 6392.IBPluginDependency
+ 6393.IBPluginDependency
+ 6394.IBPluginDependency
+ 6395.IBPluginDependency
+ 6396.IBPluginDependency
+ 6397.IBPluginDependency
+ 6398.IBPluginDependency
+ 6399.IBPluginDependency
+ 6400.IBPluginDependency
+ 6401.IBPluginDependency
+ 6402.IBPluginDependency
+ 6405.IBPluginDependency
+ 6406.IBPluginDependency
+ 6407.IBPluginDependency
+ 6408.IBPluginDependency
+ 6413.IBPluginDependency
+ 6414.IBPluginDependency
+ 6415.IBPluginDependency
+ 6418.IBPluginDependency
+ 6419.IBPluginDependency
+ 6420.IBPluginDependency
+ 6421.IBPluginDependency
+ 6422.IBPluginDependency
+ 6423.IBPluginDependency
+ 6424.IBPluginDependency
+ 6425.IBPluginDependency
+ 6426.IBPluginDependency
+ 6427.IBPluginDependency
+ 6428.IBPluginDependency
+ 6429.IBPluginDependency
+ 6430.IBEditorWindowLastContentRect
+ 6430.IBPluginDependency
+ 6431.IBPluginDependency
+ 6432.IBPluginDependency
+ 6433.IBPluginDependency
+ 6434.IBPluginDependency
+ 6435.IBPluginDependency
+ 6436.IBPluginDependency
+ 6437.IBPluginDependency
+ 6438.IBPluginDependency
+ 6440.IBPluginDependency
+ 6441.IBPluginDependency
+ 6451.IBPluginDependency
+ 6484.IBPluginDependency
+ 6485.IBPluginDependency
+ 6486.IBPluginDependency
+ 6487.IBPluginDependency
+ 6488.IBPluginDependency
+ 6489.IBPluginDependency
+ 6491.IBPluginDependency
+ 6492.IBPluginDependency
+ 6493.IBPluginDependency
+ 6494.IBPluginDependency
+ 6496.IBPluginDependency
+ 6497.IBPluginDependency
+ 6498.IBPluginDependency
+ 6499.IBPluginDependency
+ 6611.IBPluginDependency
+ 6612.IBPluginDependency
+ 6617.IBPluginDependency
+ 6617.IBViewBoundsToFrameTransform
+ 6622.IBPluginDependency
+ 6622.IBViewBoundsToFrameTransform
+ 6627.IBAttributePlaceholdersKey
+ 6627.IBPluginDependency
+ 6628.IBPluginDependency
+ 6630.IBAttributePlaceholdersKey
+ 6630.IBPluginDependency
+ 6631.IBPluginDependency
+ 6634.IBAttributePlaceholdersKey
+ 6634.IBPluginDependency
+ 6651.IBPluginDependency
+ 6652.IBPluginDependency
+ 6931.IBPluginDependency
+ 6998.IBPluginDependency
+ 6999.IBPluginDependency
+ 7002.IBPluginDependency
+ 7014.IBEditorWindowLastContentRect
+ 7014.IBPluginDependency
+ 7128.IBPluginDependency
+ 7129.IBPluginDependency
+ 7130.IBPluginDependency
+ 7131.IBPluginDependency
+ 7132.IBPluginDependency
+ 7133.IBPluginDependency
+ 7134.IBPluginDependency
+ 7135.IBPluginDependency
+ 7136.IBPluginDependency
+ 7137.IBPluginDependency
+ 7138.IBPluginDependency
+ 7139.IBPluginDependency
+ 714.IBEditorWindowLastContentRect
+ 714.IBPluginDependency
+ 7140.IBPluginDependency
+ 7141.IBPluginDependency
+ 7142.IBPluginDependency
+ 715.IBPluginDependency
+ 7168.IBPluginDependency
+ 7169.IBPluginDependency
+ 7171.IBPluginDependency
+ 7171.IBWindowTemplateEditedContentRect
+ 7171.NSWindowTemplate.visibleAtLaunch
+ 7172.IBPluginDependency
+ 7173.IBPluginDependency
+ 7173.IBWindowTemplateEditedContentRect
+ 7173.NSWindowTemplate.visibleAtLaunch
+ 7174.IBPluginDependency
+ 7175.IBPluginDependency
+ 7175.IBWindowTemplateEditedContentRect
+ 7175.NSWindowTemplate.visibleAtLaunch
+ 7176.IBPluginDependency
+ 7179.IBPluginDependency
+ 7179.IBWindowTemplateEditedContentRect
+ 7179.NSWindowTemplate.visibleAtLaunch
+ 7180.IBPluginDependency
+ 7182.IBPluginDependency
+ 7183.IBPluginDependency
+ 7184.IBPluginDependency
+ 7185.IBPluginDependency
+ 7186.IBAttributePlaceholdersKey
+ 7186.IBPluginDependency
+ 7187.IBPluginDependency
+ 7188.IBAttributePlaceholdersKey
+ 7188.IBPluginDependency
+ 7189.IBAttributePlaceholdersKey
+ 7189.IBPluginDependency
+ 7190.IBAttributePlaceholdersKey
+ 7190.IBPluginDependency
+ 7191.IBPluginDependency
+ 7192.IBPluginDependency
+ 72.IBPluginDependency
+ 7210.IBPluginDependency
+ 7211.IBPluginDependency
+ 7212.IBPluginDependency
+ 7213.IBPluginDependency
+ 7214.IBPluginDependency
+ 7215.IBPluginDependency
+ 7216.IBPluginDependency
+ 7217.IBPluginDependency
+ 7218.IBPluginDependency
+ 7219.IBPluginDependency
+ 7220.IBPluginDependency
+ 7221.IBPluginDependency
+ 7222.IBPluginDependency
+ 7223.IBPluginDependency
+ 7224.IBPluginDependency
+ 7225.IBPluginDependency
+ 7225.IBWindowTemplateEditedContentRect
+ 7225.NSWindowTemplate.visibleAtLaunch
+ 7226.IBPluginDependency
+ 7227.IBPluginDependency
+ 7228.IBPluginDependency
+ 7229.IBPluginDependency
+ 7230.IBPluginDependency
+ 7231.IBPluginDependency
+ 7232.IBPluginDependency
+ 7233.IBPluginDependency
+ 7234.IBPluginDependency
+ 7235.IBPluginDependency
+ 7236.IBPluginDependency
+ 7237.IBPluginDependency
+ 7238.IBPluginDependency
+ 7239.IBPluginDependency
+ 7240.IBPluginDependency
+ 7241.IBPluginDependency
+ 7266.IBPluginDependency
+ 7267.IBPluginDependency
+ 7268.IBPluginDependency
+ 7269.IBPluginDependency
+ 7270.IBPluginDependency
+ 7271.IBPluginDependency
+ 7272.IBPluginDependency
+ 7273.IBPluginDependency
+ 7274.IBPluginDependency
+ 7275.IBPluginDependency
+ 7276.IBPluginDependency
+ 7277.IBPluginDependency
+ 7278.IBPluginDependency
+ 7279.IBPluginDependency
+ 7280.IBPluginDependency
+ 7285.IBPluginDependency
+ 7286.IBPluginDependency
+ 7287.IBPluginDependency
+ 7288.IBPluginDependency
+ 7289.IBPluginDependency
+ 7290.IBPluginDependency
+ 7291.IBPluginDependency
+ 7292.IBPluginDependency
+ 7293.IBPluginDependency
+ 7294.IBNumberFormatterBehaviorMetadataKey
+ 7294.IBNumberFormatterLocalizesFormatMetadataKey
+ 7294.IBPluginDependency
+ 7295.IBNumberFormatterBehaviorMetadataKey
+ 7295.IBNumberFormatterLocalizesFormatMetadataKey
+ 7295.IBPluginDependency
+ 7301.IBPluginDependency
+ 7302.IBPluginDependency
+ 7305.IBPluginDependency
+ 7308.IBPluginDependency
+ 7309.IBPluginDependency
+ 7312.IBPluginDependency
+ 7313.IBPluginDependency
+ 7316.IBPluginDependency
+ 7317.IBPluginDependency
+ 7320.IBPluginDependency
+ 7353.IBPluginDependency
+ 7354.IBPluginDependency
+ 7355.IBPluginDependency
+ 7358.IBPluginDependency
+ 7359.IBPluginDependency
+ 7392.IBPluginDependency
+ 7393.IBPluginDependency
+ 7395.IBPluginDependency
+ 7396.IBPluginDependency
+ 7398.IBPluginDependency
+ 7399.IBPluginDependency
+ 74.IBPluginDependency
+ 7401.IBPluginDependency
+ 7402.IBPluginDependency
+ 7404.IBPluginDependency
+ 7405.IBPluginDependency
+ 7433.IBPluginDependency
+ 7434.IBPluginDependency
+ 7436.IBPluginDependency
+ 7437.IBPluginDependency
+ 7439.IBPluginDependency
+ 7440.IBPluginDependency
+ 7442.IBPluginDependency
+ 7443.IBPluginDependency
+ 7445.IBPluginDependency
+ 7446.IBPluginDependency
+ 7449.IBPluginDependency
+ 7449.IBWindowTemplateEditedContentRect
+ 7449.NSWindowTemplate.visibleAtLaunch
+ 7450.IBPluginDependency
+ 7451.IBPluginDependency
+ 7452.IBPluginDependency
+ 7454.IBPluginDependency
+ 7455.IBPluginDependency
+ 7456.IBPluginDependency
+ 7457.IBPluginDependency
+ 7458.IBPluginDependency
+ 7459.IBPluginDependency
+ 7460.IBPluginDependency
+ 7461.IBPluginDependency
+ 7462.IBPluginDependency
+ 7463.IBPluginDependency
+ 7464.IBPluginDependency
+ 7465.IBNumberFormatterBehaviorMetadataKey
+ 7465.IBNumberFormatterLocalizesFormatMetadataKey
+ 7465.IBPluginDependency
+ 7466.IBPluginDependency
+ 7467.IBPluginDependency
+ 7468.IBPluginDependency
+ 7469.IBPluginDependency
+ 7470.IBPluginDependency
+ 7471.IBPluginDependency
+ 7472.IBPluginDependency
+ 7473.IBPluginDependency
+ 7474.IBPluginDependency
+ 7486.IBPluginDependency
+ 7487.IBPluginDependency
+ 7488.IBPluginDependency
+ 7489.IBPluginDependency
+ 75.IBPluginDependency
+ 7515.IBEditorWindowLastContentRect
+ 7515.IBPluginDependency
+ 7515.IBWindowTemplateEditedContentRect
+ 7515.NSWindowTemplate.visibleAtLaunch
+ 7515.windowTemplate.hasMinSize
+ 7515.windowTemplate.minSize
+ 7516.IBPluginDependency
+ 7517.IBPluginDependency
+ 7518.IBPluginDependency
+ 7519.IBPluginDependency
+ 7520.IBPluginDependency
+ 7521.IBPluginDependency
+ 7522.IBPluginDependency
+ 7525.IBPluginDependency
+ 7526.IBPluginDependency
+ 7528.IBPluginDependency
+ 7531.IBPluginDependency
+ 7537.IBPluginDependency
+ 7540.IBPluginDependency
+ 7541.IBPluginDependency
+ 7542.IBPluginDependency
+ 7543.IBPluginDependency
+ 7544.IBPluginDependency
+ 7545.IBPluginDependency
+ 7546.IBPluginDependency
+ 7551.IBPluginDependency
+ 7552.IBPluginDependency
+ 7553.IBPluginDependency
+ 7554.IBPluginDependency
+ 7555.IBPluginDependency
+ 7556.IBPluginDependency
+ 7583.IBPluginDependency
+ 7584.IBPluginDependency
+ 7594.IBPluginDependency
+ 7595.IBPluginDependency
+ 7596.IBEditorWindowLastContentRect
+ 7596.IBPluginDependency
+ 7597.IBPluginDependency
+ 7598.IBAttributePlaceholdersKey
+ 7598.IBPluginDependency
+ 7599.IBAttributePlaceholdersKey
+ 7599.IBPluginDependency
+ 7600.IBAttributePlaceholdersKey
+ 7600.IBPluginDependency
+ 7601.IBAttributePlaceholdersKey
+ 7601.IBPluginDependency
+ 7602.IBPluginDependency
+ 7603.IBPluginDependency
+ 7604.IBAttributePlaceholdersKey
+ 7604.IBPluginDependency
+ 7605.IBPluginDependency
+ 7606.IBPluginDependency
+ 7607.IBEditorWindowLastContentRect
+ 7607.IBPluginDependency
+ 7610.IBAttributePlaceholdersKey
+ 7610.IBPluginDependency
+ 7612.IBPluginDependency
+ 7624.IBPluginDependency
+ 7625.IBPluginDependency
+ 7666.CustomClassName
+ 7666.IBPluginDependency
+ 7707.IBPluginDependency
+ 7707.IBWindowTemplateEditedContentRect
+ 7707.NSWindowTemplate.visibleAtLaunch
+ 7708.IBPluginDependency
+ 7715.IBPluginDependency
+ 7716.IBPluginDependency
+ 7725.IBPluginDependency
+ 7726.IBPluginDependency
+ 7729.IBPluginDependency
+ 7730.IBPluginDependency
+ 7740.IBPluginDependency
+ 7759.IBPluginDependency
+ 7760.IBPluginDependency
+ 7761.IBPluginDependency
+ 7762.IBPluginDependency
+ 7765.IBNumberFormatterBehaviorMetadataKey
+ 7765.IBNumberFormatterLocalizesFormatMetadataKey
+ 7765.IBPluginDependency
+ 7766.IBPluginDependency
+ 7767.IBPluginDependency
+ 7771.IBPluginDependency
+ 7772.IBEditorWindowLastContentRect
+ 7772.IBPluginDependency
+ 7773.IBPluginDependency
+ 7774.IBPluginDependency
+ 7775.IBPluginDependency
+ 7776.IBPluginDependency
+ 7777.IBPluginDependency
+ 7778.IBPluginDependency
+ 7779.IBPluginDependency
+ 7780.IBPluginDependency
+ 7781.IBPluginDependency
+ 7792.IBAttributePlaceholdersKey
+ 7792.IBPluginDependency
+ 7793.IBPluginDependency
+ 7794.IBNumberFormatterBehaviorMetadataKey
+ 7794.IBNumberFormatterLocalizesFormatMetadataKey
+ 7794.IBNumberFormatterSampleNumberKey
+ 7794.IBPluginDependency
+ 7802.IBAttributePlaceholdersKey
+ 7802.IBPluginDependency
+ 7803.IBPluginDependency
+ 7804.IBPluginDependency
+ 7804.IBViewBoundsToFrameTransform
+ 7805.IBPluginDependency
+ 7806.IBPluginDependency
+ 7806.IBViewBoundsToFrameTransform
+ 7807.IBPluginDependency
+ 7808.IBPluginDependency
+ 7808.IBViewBoundsToFrameTransform
+ 7809.IBPluginDependency
+ 7810.IBPluginDependency
+ 7810.IBViewBoundsToFrameTransform
+ 7811.IBPluginDependency
+ 7812.IBPluginDependency
+ 7812.IBViewBoundsToFrameTransform
+ 7813.IBPluginDependency
+ 7817.IBEditorWindowLastContentRect
+ 7817.IBPluginDependency
+ 7817.IBWindowTemplateEditedContentRect
+ 7817.NSWindowTemplate.visibleAtLaunch
+ 7818.IBPluginDependency
+ 7820.IBPluginDependency
+ 7821.IBPluginDependency
+ 7822.IBPluginDependency
+ 7823.IBPluginDependency
+ 7824.IBPluginDependency
+ 7825.IBPluginDependency
+ 7826.IBPluginDependency
+ 7827.IBPluginDependency
+ 7828.IBPluginDependency
+ 7829.IBPluginDependency
+ 783.IBPluginDependency
+ 7830.IBPluginDependency
+ 7831.IBPluginDependency
+ 7836.IBPluginDependency
+ 7836.IBViewBoundsToFrameTransform
+ 7837.IBPluginDependency
+ 7838.IBPluginDependency
+ 7838.IBViewBoundsToFrameTransform
+ 7839.IBPluginDependency
+ 784.IBEditorWindowLastContentRect
+ 784.IBPluginDependency
+ 7840.IBNumberFormatterBehaviorMetadataKey
+ 7840.IBNumberFormatterLocalizesFormatMetadataKey
+ 7840.IBPluginDependency
+ 7843.IBAttributePlaceholdersKey
+ 7843.IBPluginDependency
+ 7844.IBPluginDependency
+ 7845.IBAttributePlaceholdersKey
+ 7845.IBPluginDependency
+ 7846.IBPluginDependency
+ 7847.IBPluginDependency
+ 7847.IBViewBoundsToFrameTransform
+ 7848.IBPluginDependency
+ 785.IBPluginDependency
+ 7855.IBEditorWindowLastContentRect
+ 7855.IBPluginDependency
+ 7855.IBWindowTemplateEditedContentRect
+ 7855.NSWindowTemplate.visibleAtLaunch
+ 7856.IBPluginDependency
+ 7857.IBPluginDependency
+ 7858.IBPluginDependency
+ 7859.IBPluginDependency
+ 7860.IBPluginDependency
+ 7861.IBPluginDependency
+ 7862.IBAttributePlaceholdersKey
+ 7862.IBPluginDependency
+ 7863.IBPluginDependency
+ 7864.IBPluginDependency
+ 7866.IBAttributePlaceholdersKey
+ 7866.IBPluginDependency
+ 7867.IBPluginDependency
+ 787.IBPluginDependency
+ 7871.IBAttributePlaceholdersKey
+ 7871.IBPluginDependency
+ 7872.IBPluginDependency
+ 7873.IBAttributePlaceholdersKey
+ 7873.IBPluginDependency
+ 7874.IBPluginDependency
+ 7875.IBPluginDependency
+ 7876.IBPluginDependency
+ 7879.IBPluginDependency
+ 788.IBEditorWindowLastContentRect
+ 788.IBPluginDependency
+ 7880.IBPluginDependency
+ 7881.IBPluginDependency
+ 7886.IBPluginDependency
+ 789.IBPluginDependency
+ 7899.IBPluginDependency
+ 79.IBPluginDependency
+ 794.IBEditorWindowLastContentRect
+ 794.IBPluginDependency
+ 794.IBWindowTemplateEditedContentRect
+ 794.NSWindowTemplate.visibleAtLaunch
+ 795.IBAttributePlaceholdersKey
+ 795.IBPluginDependency
+ 796.IBEditorWindowLastContentRect
+ 796.IBPersistedLastKnownCanvasPosition
+ 796.IBPluginDependency
+ 796.IBWindowTemplateEditedContentRect
+ 796.NSWindowTemplate.visibleAtLaunch
+ 797.IBNSViewMetadataGestureRecognizers
+ 797.IBPluginDependency
+ 7971.IBPluginDependency
+ 7972.IBPluginDependency
+ 7973.IBPluginDependency
+ 7974.IBPluginDependency
+ 7978.IBPluginDependency
+ 7987.IBPluginDependency
+ 7988.IBPluginDependency
+ 7989.IBEditorWindowLastContentRect
+ 7989.IBPluginDependency
+ 7993.IBPluginDependency
+ 7994.IBPluginDependency
+ 7995.IBPluginDependency
+ 7996.IBPluginDependency
+ 7997.IBPluginDependency
+ 7998.IBPluginDependency
+ 80.IBPluginDependency
+ 8003.IBPluginDependency
+ 8009.IBPluginDependency
+ 8012.IBPluginDependency
+ 8013.IBPluginDependency
+ 8014.IBPluginDependency
+ 8015.IBPluginDependency
+ 8016.IBPluginDependency
+ 8021.IBPluginDependency
+ 8022.IBPluginDependency
+ 8023.IBPluginDependency
+ 8024.IBPluginDependency
+ 8025.IBPluginDependency
+ 8030.IBPluginDependency
+ 8031.IBPluginDependency
+ 8032.IBPluginDependency
+ 8033.IBPluginDependency
+ 8034.IBPluginDependency
+ 8043.IBPluginDependency
+ 8044.IBPluginDependency
+ 8045.IBAttributePlaceholdersKey
+ 8045.IBPluginDependency
+ 8046.IBPluginDependency
+ 8047.IBNumberFormatterBehaviorMetadataKey
+ 8047.IBNumberFormatterLocalizesFormatMetadataKey
+ 8047.IBPluginDependency
+ 8048.IBPluginDependency
+ 8049.IBPluginDependency
+ 8056.IBPluginDependency
+ 8057.IBPluginDependency
+ 8058.IBAttributePlaceholdersKey
+ 8058.IBPluginDependency
+ 8059.IBPluginDependency
+ 8060.IBPluginDependency
+ 8061.IBPluginDependency
+ 8066.IBNumberFormatterBehaviorMetadataKey
+ 8066.IBNumberFormatterLocalizesFormatMetadataKey
+ 8066.IBPluginDependency
+ 8084.IBPluginDependency
+ 81.IBEditorWindowLastContentRect
+ 81.IBPluginDependency
+ 8134.IBEditorWindowLastContentRect
+ 8134.IBPluginDependency
+ 8134.IBWindowTemplateEditedContentRect
+ 8134.NSWindowTemplate.visibleAtLaunch
+ 8135.IBPluginDependency
+ 8136.IBPluginDependency
+ 8137.IBPluginDependency
+ 8138.IBPluginDependency
+ 8139.IBPluginDependency
+ 8140.IBPluginDependency
+ 8141.IBPluginDependency
+ 8142.IBPluginDependency
+ 8143.IBPluginDependency
+ 8144.IBPluginDependency
+ 8145.IBPluginDependency
+ 8146.IBPluginDependency
+ 8147.IBPluginDependency
+ 8148.IBPluginDependency
+ 8149.IBPluginDependency
+ 8150.IBPluginDependency
+ 8151.IBPluginDependency
+ 8152.IBPluginDependency
+ 8153.IBPluginDependency
+ 8154.IBPluginDependency
+ 8155.IBPluginDependency
+ 8156.IBPluginDependency
+ 8157.IBPluginDependency
+ 8158.IBPluginDependency
+ 8159.IBPluginDependency
+ 8160.IBPluginDependency
+ 8161.IBPluginDependency
+ 8162.IBPluginDependency
+ 8164.IBPluginDependency
+ 8181.IBNSViewMetadataGestureRecognizers
+ 8181.IBPluginDependency
+ 8181.IBViewBoundsToFrameTransform
+ 8182.IBPluginDependency
+ 8183.IBPluginDependency
+ 8184.IBNSViewMetadataGestureRecognizers
+ 8184.IBPluginDependency
+ 8185.IBNSViewMetadataGestureRecognizers
+ 8185.IBPluginDependency
+ 8186.IBPluginDependency
+ 823.IBPluginDependency
+ 823.IBViewBoundsToFrameTransform
+ 824.IBPluginDependency
+ 8245.IBPluginDependency
+ 8246.IBEditorWindowLastContentRect
+ 8246.IBPluginDependency
+ 825.IBPluginDependency
+ 825.IBViewBoundsToFrameTransform
+ 8253.IBPluginDependency
+ 8254.IBPluginDependency
+ 8255.IBPluginDependency
+ 8256.IBPluginDependency
+ 8257.IBPluginDependency
+ 8258.IBPluginDependency
+ 8259.IBPluginDependency
+ 826.IBPluginDependency
+ 8260.IBPluginDependency
+ 8261.IBPluginDependency
+ 8262.IBPluginDependency
+ 8263.IBPluginDependency
+ 8265.IBPluginDependency
+ 8268.IBPluginDependency
+ 8269.IBPluginDependency
+ 827.IBPluginDependency
+ 827.IBViewBoundsToFrameTransform
+ 828.IBPluginDependency
+ 829.IBPluginDependency
+ 829.IBViewBoundsToFrameTransform
+ 8295.IBPluginDependency
+ 83.IBPluginDependency
+ 830.IBPluginDependency
+ 8301.IBPluginDependency
+ 8302.IBAttributePlaceholdersKey
+ 8302.IBPluginDependency
+ 8303.IBPluginDependency
+ 8307.IBPluginDependency
+ 8308.IBPluginDependency
+ 8309.IBPluginDependency
+ 831.IBPluginDependency
+ 831.IBViewBoundsToFrameTransform
+ 8310.IBPluginDependency
+ 8316.IBPluginDependency
+ 832.IBPluginDependency
+ 8322.IBAttributePlaceholdersKey
+ 8322.IBPluginDependency
+ 8323.IBPluginDependency
+ 8331.IBPluginDependency
+ 8331.IBWindowTemplateEditedContentRect
+ 8331.NSWindowTemplate.visibleAtLaunch
+ 8332.IBPluginDependency
+ 8333.IBPluginDependency
+ 8334.IBPluginDependency
+ 8335.IBPluginDependency
+ 8336.IBPluginDependency
+ 8338.IBPluginDependency
+ 8341.IBPluginDependency
+ 8343.IBPluginDependency
+ 8344.IBPluginDependency
+ 8345.IBAttributePlaceholdersKey
+ 8345.IBPluginDependency
+ 8346.IBPluginDependency
+ 835.IBPluginDependency
+ 835.IBViewBoundsToFrameTransform
+ 8351.IBPluginDependency
+ 8352.IBPluginDependency
+ 8354.IBPluginDependency
+ 8356.IBPluginDependency
+ 836.IBPluginDependency
+ 8363.IBPluginDependency
+ 8364.IBPluginDependency
+ 8365.IBPluginDependency
+ 8366.IBPluginDependency
+ 8367.IBPluginDependency
+ 8368.IBPluginDependency
+ 8369.IBPluginDependency
+ 8377.IBPluginDependency
+ 8378.IBPluginDependency
+ 8379.IBPluginDependency
+ 8380.IBPluginDependency
+ 8381.IBPluginDependency
+ 8382.IBPluginDependency
+ 8383.IBPluginDependency
+ 8384.IBPluginDependency
+ 8385.IBPluginDependency
+ 8386.IBPluginDependency
+ 8387.IBPluginDependency
+ 8388.IBPluginDependency
+ 8402.IBPluginDependency
+ 8405.IBPluginDependency
+ 8408.IBPluginDependency
+ 8409.IBPluginDependency
+ 8410.IBPluginDependency
+ 8411.IBPluginDependency
+ 8412.IBPluginDependency
+ 8413.IBPluginDependency
+ 8414.IBPluginDependency
+ 8415.IBPluginDependency
+ 8416.IBPluginDependency
+ 8427.IBPluginDependency
+ 8428.IBPluginDependency
+ 843.IBPluginDependency
+ 843.IBViewBoundsToFrameTransform
+ 844.IBPluginDependency
+ 8445.IBPluginDependency
+ 8446.IBPluginDependency
+ 8447.IBPluginDependency
+ 8448.IBPluginDependency
+ 845.IBPluginDependency
+ 845.IBViewBoundsToFrameTransform
+ 8451.IBPersistedLastKnownCanvasPosition
+ 8451.IBPluginDependency
+ 8454.IBPluginDependency
+ 8455.IBPluginDependency
+ 8456.IBPluginDependency
+ 8457.IBPluginDependency
+ 8458.IBPluginDependency
+ 846.IBPluginDependency
+ 8477.IBPluginDependency
+ 8478.IBPluginDependency
+ 8499.IBPluginDependency
+ 850.IBPluginDependency
+ 8500.IBPluginDependency
+ 8501.IBAttributePlaceholdersKey
+ 8501.IBPluginDependency
+ 8502.IBPluginDependency
+ 8512.IBPluginDependency
+ 8513.IBPluginDependency
+ 8514.IBPluginDependency
+ 8515.IBPluginDependency
+ 8517.IBPluginDependency
+ 8518.IBPluginDependency
+ 8519.IBPluginDependency
+ 8523.IBPluginDependency
+ 8524.IBPluginDependency
+ 8525.IBPluginDependency
+ 8526.IBPluginDependency
+ 8527.IBPluginDependency
+ 8535.IBPluginDependency
+ 855.IBPluginDependency
+ 8552.IBPluginDependency
+ 8553.IBPluginDependency
+ 8554.IBPluginDependency
+ 8557.IBPluginDependency
+ 8558.IBPluginDependency
+ 8559.IBPluginDependency
+ 8560.IBPluginDependency
+ 8561.IBPluginDependency
+ 8568.IBPluginDependency
+ 8569.IBPluginDependency
+ 8570.IBPluginDependency
+ 8571.IBPluginDependency
+ 8572.IBPluginDependency
+ 8575.IBPluginDependency
+ 8576.IBPluginDependency
+ 8578.IBPluginDependency
+ 8579.IBPluginDependency
+ 8596.IBPluginDependency
+ 8596.IBWindowTemplateEditedContentRect
+ 8596.NSWindowTemplate.visibleAtLaunch
+ 8597.IBPluginDependency
+ 8598.IBPluginDependency
+ 8599.IBPluginDependency
+ 8608.IBPluginDependency
+ 8609.IBPluginDependency
+ 861.IBAttributePlaceholdersKey
+ 861.IBEditorWindowLastContentRect
+ 861.IBPluginDependency
+ 861.IBWindowTemplateEditedContentRect
+ 861.NSWindowTemplate.visibleAtLaunch
+ 861.windowTemplate.hasMaxSize
+ 861.windowTemplate.hasMinSize
+ 861.windowTemplate.maxSize
+ 861.windowTemplate.minSize
+ 8610.IBPluginDependency
+ 8611.IBPluginDependency
+ 8612.IBPluginDependency
+ 862.IBPluginDependency
+ 8635.IBNumberFormatterBehaviorMetadataKey
+ 8635.IBNumberFormatterLocalizesFormatMetadataKey
+ 8635.IBNumberFormatterSampleNumberKey
+ 8635.IBPluginDependency
+ 8638.IBPluginDependency
+ 8639.IBPluginDependency
+ 8640.IBPluginDependency
+ 8641.IBPluginDependency
+ 865.IBPluginDependency
+ 8653.IBPluginDependency
+ 8654.IBPluginDependency
+ 8655.IBPluginDependency
+ 8656.IBPluginDependency
+ 866.IBPluginDependency
+ 8660.IBPluginDependency
+ 8661.IBPluginDependency
+ 8663.IBPluginDependency
+ 8664.IBPluginDependency
+ 8667.IBPluginDependency
+ 8668.IBPluginDependency
+ 8677.IBPluginDependency
+ 8678.IBPluginDependency
+ 8679.IBPluginDependency
+ 8680.IBPluginDependency
+ 8681.IBPluginDependency
+ 8682.IBPluginDependency
+ 8687.IBPluginDependency
+ 8688.IBPluginDependency
+ 8689.IBPluginDependency
+ 8690.IBPluginDependency
+ 8691.IBPluginDependency
+ 8692.IBPluginDependency
+ 8706.IBPluginDependency
+ 8707.IBPluginDependency
+ 8718.IBPluginDependency
+ 8719.IBPluginDependency
+ 8722.IBPluginDependency
+ 8723.IBPluginDependency
+ 8724.IBPluginDependency
+ 8725.IBPluginDependency
+ 8727.IBPluginDependency
+ 8730.IBPluginDependency
+ 8731.IBPluginDependency
+ 8735.IBPluginDependency
+ 8736.IBPluginDependency
+ 8739.IBPluginDependency
+ 8740.IBPluginDependency
+ 8741.IBPluginDependency
+ 8742.IBPluginDependency
+ 8743.IBPluginDependency
+ 8744.IBPluginDependency
+ 8746.IBPluginDependency
+ 8747.IBPluginDependency
+ 8758.IBPluginDependency
+ 879.IBPluginDependency
+ 880.IBPluginDependency
+ 883.IBPluginDependency
+ 884.IBPluginDependency
+ 885.IBPluginDependency
+ 886.IBPluginDependency
+ 887.IBPluginDependency
+ 888.IBPluginDependency
+ 889.IBPluginDependency
+ 890.IBPluginDependency
+ 897.IBPluginDependency
+ 8975.IBPluginDependency
+ 8976.IBPluginDependency
+ 8978.IBPluginDependency
+ 8979.IBPluginDependency
+ 898.IBPluginDependency
+ 899.IBPluginDependency
+ 8991.IBEditorWindowLastContentRect
+ 8991.IBPluginDependency
+ 8991.IBWindowTemplateEditedContentRect
+ 8991.NSWindowTemplate.visibleAtLaunch
+ 8992.IBPluginDependency
+ 8993.IBAttributePlaceholdersKey
+ 8993.IBPluginDependency
+ 8994.IBPluginDependency
+ 8995.IBAttributePlaceholdersKey
+ 8995.IBPluginDependency
+ 8996.IBPluginDependency
+ 8997.IBAttributePlaceholdersKey
+ 8997.IBPluginDependency
+ 8998.IBPluginDependency
+ 900.IBPluginDependency
+ 9001.IBAttributePlaceholdersKey
+ 9001.IBPluginDependency
+ 9002.IBPluginDependency
+ 9007.IBPluginDependency
+ 901.IBPluginDependency
+ 9019.IBAttributePlaceholdersKey
+ 9019.IBPluginDependency
+ 902.IBPluginDependency
+ 9020.IBPluginDependency
+ 903.IBPluginDependency
+ 9032.IBPluginDependency
+ 9033.IBPluginDependency
+ 9034.IBPluginDependency
+ 9035.IBPluginDependency
+ 9036.IBPluginDependency
+ 9037.IBPluginDependency
+ 9039.IBPluginDependency
+ 904.IBPluginDependency
+ 9040.IBPluginDependency
+ 9041.IBPluginDependency
+ 9042.IBPluginDependency
+ 9043.IBPluginDependency
+ 9044.IBPluginDependency
+ 9045.IBPluginDependency
+ 9046.IBPluginDependency
+ 9047.IBPluginDependency
+ 9049.IBPluginDependency
+ 905.IBPluginDependency
+ 9050.IBPluginDependency
+ 9051.IBPluginDependency
+ 9052.IBPluginDependency
+ 9053.IBPluginDependency
+ 9055.IBPluginDependency
+ 9057.IBPluginDependency
+ 9058.IBPluginDependency
+ 9059.IBPluginDependency
+ 906.IBPluginDependency
+ 9060.IBPluginDependency
+ 9061.IBPluginDependency
+ 9062.IBPluginDependency
+ 9063.IBPluginDependency
+ 907.IBPluginDependency
+ 9071.IBPluginDependency
+ 9072.IBPluginDependency
+ 9075.IBPluginDependency
+ 9076.IBPluginDependency
+ 908.IBPluginDependency
+ 9083.IBPluginDependency
+ 9084.IBPluginDependency
+ 9085.IBPluginDependency
+ 9086.IBPluginDependency
+ 9087.IBPluginDependency
+ 9088.IBPluginDependency
+ 9089.IBPluginDependency
+ 909.IBPluginDependency
+ 9090.IBPluginDependency
+ 9094.IBNumberFormatterBehaviorMetadataKey
+ 9094.IBNumberFormatterLocalizesFormatMetadataKey
+ 9094.IBPluginDependency
+ 9095.IBNumberFormatterBehaviorMetadataKey
+ 9095.IBNumberFormatterLocalizesFormatMetadataKey
+ 9095.IBPluginDependency
+ 910.IBPluginDependency
+ 9104.IBEditorWindowLastContentRect
+ 9104.IBPluginDependency
+ 9104.IBWindowTemplateEditedContentRect
+ 9104.NSWindowTemplate.visibleAtLaunch
+ 9105.IBPluginDependency
+ 9106.IBPluginDependency
+ 9107.IBPluginDependency
+ 9109.IBPluginDependency
+ 911.IBPluginDependency
+ 9110.IBPluginDependency
+ 9112.IBPluginDependency
+ 9112.IBViewBoundsToFrameTransform
+ 9113.IBPluginDependency
+ 9113.IBViewBoundsToFrameTransform
+ 9114.IBPluginDependency
+ 9115.IBPluginDependency
+ 912.IBPluginDependency
+ 9129.IBPluginDependency
+ 913.IBPluginDependency
+ 9131.IBPluginDependency
+ 9133.IBPluginDependency
+ 9135.IBPluginDependency
+ 9137.IBPluginDependency
+ 9138.IBPluginDependency
+ 9139.IBPluginDependency
+ 914.IBPluginDependency
+ 9140.IBPluginDependency
+ 9144.IBPluginDependency
+ 9146.IBPluginDependency
+ 9148.IBPluginDependency
+ 9150.IBPluginDependency
+ 9152.IBAttributePlaceholdersKey
+ 9152.IBPluginDependency
+ 9153.IBPluginDependency
+ 9156.IBAttributePlaceholdersKey
+ 9156.IBPluginDependency
+ 9157.IBPluginDependency
+ 9184.IBAttributePlaceholdersKey
+ 9184.IBPluginDependency
+ 9184.IBViewBoundsToFrameTransform
+ 9185.IBPluginDependency
+ 9186.IBPluginDependency
+ 9187.IBPluginDependency
+ 9188.IBPluginDependency
+ 9195.IBPluginDependency
+ 92.IBPluginDependency
+ 9206.IBPluginDependency
+ 9208.IBPluginDependency
+ 9209.IBPluginDependency
+ 9210.IBPluginDependency
+ 9211.IBPluginDependency
+ 9236.IBPluginDependency
+ 9237.IBAttributePlaceholdersKey
+ 9237.IBPluginDependency
+ 9238.IBPluginDependency
+ 924.IBPluginDependency
+ 925.IBPluginDependency
+ 9257.IBAttributePlaceholdersKey
+ 9257.IBPluginDependency
+ 9258.IBPluginDependency
+ 9259.IBAttributePlaceholdersKey
+ 9259.IBPluginDependency
+ 926.IBPluginDependency
+ 9260.IBAttributePlaceholdersKey
+ 9260.IBPluginDependency
+ 9261.IBPluginDependency
+ 9262.IBPluginDependency
+ 9263.IBEditorWindowLastContentRect
+ 9263.IBPluginDependency
+ 9264.IBPluginDependency
+ 9265.IBPluginDependency
+ 9266.IBEditorWindowLastContentRect
+ 9266.IBPluginDependency
+ 9267.IBPluginDependency
+ 9269.IBPluginDependency
+ 927.IBPluginDependency
+ 9270.IBPluginDependency
+ 9271.IBPluginDependency
+ 9272.IBPluginDependency
+ 9273.IBPluginDependency
+ 9274.IBPluginDependency
+ 9276.IBAttributePlaceholdersKey
+ 9276.IBPluginDependency
+ 9276.IBViewBoundsToFrameTransform
+ 9277.IBPluginDependency
+ 9278.IBPluginDependency
+ 9279.IBPluginDependency
+ 928.IBPluginDependency
+ 9280.IBAttributePlaceholdersKey
+ 9280.IBPluginDependency
+ 9280.IBViewBoundsToFrameTransform
+ 9281.IBPluginDependency
+ 9282.IBPluginDependency
+ 9283.IBPluginDependency
+ 9284.IBPluginDependency
+ 9285.IBPluginDependency
+ 9286.IBPluginDependency
+ 9287.IBPluginDependency
+ 9288.IBPluginDependency
+ 9289.IBPluginDependency
+ 929.IBPluginDependency
+ 9290.IBPluginDependency
+ 9290.IBViewBoundsToFrameTransform
+ 9291.IBPluginDependency
+ 9292.IBPluginDependency
+ 9292.IBViewBoundsToFrameTransform
+ 9293.IBPluginDependency
+ 9294.IBEditorWindowLastContentRect
+ 9294.IBPluginDependency
+ 9295.IBPluginDependency
+ 9296.IBPluginDependency
+ 9297.IBPluginDependency
+ 9299.IBPluginDependency
+ 930.IBPluginDependency
+ 9300.IBPluginDependency
+ 9301.IBPluginDependency
+ 9302.IBPluginDependency
+ 931.IBPluginDependency
+ 932.IBPluginDependency
+ 933.IBPluginDependency
+ 934.IBPluginDependency
+ 935.IBPluginDependency
+ 936.IBPluginDependency
+ 937.IBPluginDependency
+ 938.IBPluginDependency
+ 9389.IBPluginDependency
+ 9389.IBWindowTemplateEditedContentRect
+ 9389.NSWindowTemplate.visibleAtLaunch
+ 939.IBPluginDependency
+ 9390.IBPluginDependency
+ 9392.IBPluginDependency
+ 9393.IBPluginDependency
+ 9394.IBPluginDependency
+ 9395.IBPluginDependency
+ 9396.IBPluginDependency
+ 9397.IBPluginDependency
+ 940.IBPluginDependency
+ 9400.IBPluginDependency
+ 9401.IBPluginDependency
+ 9402.IBPluginDependency
+ 9403.IBPluginDependency
+ 9404.IBPluginDependency
+ 9405.IBNumberFormatterBehaviorMetadataKey
+ 9405.IBNumberFormatterLocalizesFormatMetadataKey
+ 9405.IBPluginDependency
+ 9406.IBPluginDependency
+ 9407.IBNumberFormatterBehaviorMetadataKey
+ 9407.IBNumberFormatterLocalizesFormatMetadataKey
+ 9407.IBPluginDependency
+ 9408.IBPluginDependency
+ 9409.IBPluginDependency
+ 941.IBPluginDependency
+ 942.IBPluginDependency
+ 9424.IBPluginDependency
+ 9425.IBPluginDependency
+ 943.IBPluginDependency
+ 944.IBPluginDependency
+ 945.IBPluginDependency
+ 946.IBPluginDependency
+ 947.IBPluginDependency
+ 948.IBPluginDependency
+ 949.IBPluginDependency
+ 950.IBPluginDependency
+ 951.IBPluginDependency
+ 952.IBPluginDependency
+ 9525.IBPluginDependency
+ 9526.IBPluginDependency
+ 953.IBPluginDependency
+ 954.IBPluginDependency
+ 955.IBPluginDependency
+ 956.IBPluginDependency
+ 957.IBPluginDependency
+ 958.IBPluginDependency
+ 959.IBPluginDependency
+ 960.IBPluginDependency
+ 961.IBPluginDependency
+ 962.IBPluginDependency
+ 963.IBPluginDependency
+ 9633.IBPluginDependency
+ 9634.IBPluginDependency
+ 9635.IBPluginDependency
+ 9636.IBPluginDependency
+ 9637.IBPluginDependency
+ 9638.IBPluginDependency
+ 9639.IBPluginDependency
+ 964.IBPluginDependency
+ 9640.IBPluginDependency
+ 9641.IBPluginDependency
+ 9642.IBPluginDependency
+ 9643.IBPluginDependency
+ 9644.IBPluginDependency
+ 9645.IBPluginDependency
+ 9646.IBPluginDependency
+ 9647.IBPluginDependency
+ 9648.IBPluginDependency
+ 9649.IBPluginDependency
+ 965.IBPluginDependency
+ 9650.IBPluginDependency
+ 9651.IBPluginDependency
+ 9652.IBPluginDependency
+ 9653.IBPluginDependency
+ 9654.IBPluginDependency
+ 9655.IBPluginDependency
+ 9656.IBPluginDependency
+ 9657.IBPluginDependency
+ 9658.IBPluginDependency
+ 966.IBPluginDependency
+ 967.IBPluginDependency
+ 9677.IBPluginDependency
+ 968.IBPluginDependency
+ 969.IBPluginDependency
+ 970.IBPluginDependency
+ 9705.IBEditorWindowLastContentRect
+ 9705.IBPluginDependency
+ 9705.IBWindowTemplateEditedContentRect
+ 9705.NSWindowTemplate.visibleAtLaunch
+ 9705.windowTemplate.hasMinSize
+ 9705.windowTemplate.minSize
+ 9706.IBPluginDependency
+ 9709.IBPluginDependency
+ 971.IBPluginDependency
+ 9710.IBPluginDependency
+ 9711.IBPluginDependency
+ 9712.IBAttributePlaceholdersKey
+ 9712.IBPluginDependency
+ 9714.IBPluginDependency
+ 9715.IBPluginDependency
+ 9716.IBPluginDependency
+ 9717.IBPluginDependency
+ 9732.IBPluginDependency
+ 9733.IBPluginDependency
+ 9734.IBPluginDependency
+ 9735.IBPluginDependency
+ 9752.IBPluginDependency
+ 9753.IBPluginDependency
+ 9754.IBPluginDependency
+ 9755.IBPluginDependency
+ 9756.IBPluginDependency
+ 9757.IBPluginDependency
+ 9758.IBPluginDependency
+ 9759.IBPluginDependency
+ 9763.IBPluginDependency
+ 9764.IBPluginDependency
+ 977.IBPluginDependency
+ 9776.IBPluginDependency
+ 9777.IBPluginDependency
+ 9778.IBPluginDependency
+ 9779.IBPluginDependency
+ 978.IBPluginDependency
+ 9780.IBPluginDependency
+ 979.IBPluginDependency
+ 9796.IBPluginDependency
+ 9797.IBPluginDependency
+ 9798.IBPluginDependency
+ 980.IBPluginDependency
+ 9803.IBPluginDependency
+ 9804.IBPluginDependency
+ 9805.IBAttributePlaceholdersKey
+ 9805.IBPluginDependency
+ 9806.IBPluginDependency
+ 9807.IBPluginDependency
+ 9808.IBPluginDependency
+ 9809.IBPluginDependency
+ 9810.IBPluginDependency
+ 9811.IBAttributePlaceholdersKey
+ 9811.IBPluginDependency
+ 9812.IBPluginDependency
+ 9813.IBAttributePlaceholdersKey
+ 9813.IBPluginDependency
+ 9814.IBPluginDependency
+ 9815.IBPluginDependency
+ 9816.IBPluginDependency
+ 9817.IBPluginDependency
+ 9818.IBPluginDependency
+ 9819.IBAttributePlaceholdersKey
+ 9819.IBPluginDependency
+ 9820.IBPluginDependency
+ 9821.IBPluginDependency
+ 9822.IBPluginDependency
+ 9823.IBPluginDependency
+ 9824.IBPluginDependency
+ 9825.IBPluginDependency
+ 9826.IBPluginDependency
+ 9827.IBPluginDependency
+ 9829.IBPluginDependency
+ 9830.IBPluginDependency
+ 9831.IBPluginDependency
+ 9832.IBAttributePlaceholdersKey
+ 9832.IBPluginDependency
+ 9857.IBPluginDependency
+ 9858.IBPluginDependency
+ 9865.IBPluginDependency
+ 9866.IBPluginDependency
+ 9867.IBPluginDependency
+ 9868.IBPluginDependency
+ 9870.IBPluginDependency
+ 9871.IBPluginDependency
+ 9872.IBPluginDependency
+ 9873.IBPluginDependency
+ 9946.IBEditorWindowLastContentRect
+ 9946.IBPersistedLastKnownCanvasPosition
+ 9946.IBPluginDependency
+ 9946.IBWindowTemplateEditedContentRect
+ 9946.NSWindowTemplate.visibleAtLaunch
+ 9947.IBNSViewMetadataGestureRecognizers
+ 9947.IBPluginDependency
+ 9948.IBPluginDependency
+ 9949.IBPluginDependency
+ 9950.IBPluginDependency
+ 9951.IBPluginDependency
+ 9952.IBPluginDependency
+ 9953.IBPluginDependency
+ 9959.IBPluginDependency
+ 9961.IBPluginDependency
+ 9962.IBPluginDependency
+ 9963.IBPluginDependency
+ 9964.IBPluginDependency
+ 9965.IBPluginDependency
+ 9966.IBPluginDependency
+ 9967.IBNSViewMetadataGestureRecognizers
+ 9967.IBPersistedLastKnownCanvasPosition
+ 9967.IBPluginDependency
+ 9970.IBPluginDependency
+ 9971.IBPluginDependency
+ 9972.IBPluginDependency
+ 9973.IBPluginDependency
+ 9974.IBPluginDependency
+ 9975.IBPluginDependency
+ 9976.IBPluginDependency
+ 9977.IBPluginDependency
+ 9978.IBPluginDependency
+ 9979.IBPluginDependency
+ 9980.IBPluginDependency
+ 9981.IBPluginDependency
+ 9984.IBPluginDependency
+ 9985.IBPluginDependency
+ 9987.IBPluginDependency
+ 9988.IBPluginDependency
+ 9989.IBPluginDependency
+ 9990.IBPluginDependency
+ 9991.IBPluginDependency
+ 9992.IBPluginDependency
+ 9993.IBPluginDependency
+ 9994.IBPluginDependency
+
+
+ YES
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{886, 641}, {253, 89}}
+ {87, 599}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{886, 641}, {253, 89}}
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Adjusts the pressure of the NDS stylus upon the touch screen, where 0% is the lightest pressure and 100% is the heaviest pressure. This setting can be useful for certain homebrew ROMs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+
+
+
+ ToolTip
+
+ ToolTip
+
+ Adjusts the pressure of the NDS stylus upon the touch screen by default, where 0% is the lightest pressure and 100% is the heaviest pressure. This setting can be useful for certain homebrew ROMs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwrAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Requests the GPU to render 3D at a resolution that is the native resolution multiplied by this value.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUM7AABCigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, requests the GPU to render at a resolution that is the native resolution multiplied by this value.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{714, 393}, {181, 163}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw64AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw4OAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw5SAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw4qAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw4CAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw20AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw20AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAwvQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw20AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCuAAAwoQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, helps to preserve the color gradations of the texture. This can compensate for poor color blending from the original 16-bit NDS color palette, or for posterization caused by texture upscaling filters. Moderate CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDIQAAwtYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, helps to preserve the color gradations of the texture by default. This can compensate for poor color blending from the original 16-bit NDS color palette, or for posterization caused by texture upscaling filters. Moderate CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC9gAAwpQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When the scaling factor is greater than 1x, automatically upscale all textures using the xBRZ filter. This adds additional details to textures, which can improve the appearance of textures at higher GPU scaling factors. Very high CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDJwAAwggAAA
+
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwfgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{788, 467}, {77, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMkAABCrgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When the scaling factor is greater than 1x, automatically upscale all textures using the xBRZ filter. This adds additional details to textures, which can improve the appearance of textures at higher GPU scaling factors. Very high CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWwAAwoQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, applies bilinear filtering and anisotropic filtering during texture sampling. No CPU usage, but increases GPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwlAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, applies bilinear filtering and anisotropic filtering during texture sampling by default. No CPU usage, but increases GPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwlwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Activates game-specific hacks. Enabling this setting might improve the compatibility of some games, but may also cause some unintended side effects with the emulation.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Activates game-specific hacks. Enabling this setting might improve the compatibility of some games, but may also cause some unintended side effects with the emulation.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ The GPU will output video at this color depth. Supported color depths are RGB555 (15-bit), RGB666 (18-bit), and RGB888 (24-bit).
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1227, 657}, {83, 54}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the GPU will output video at this color depth. Supported color depths are RGB555 (15-bit), RGB666 (18-bit), and RGB888 (24-bit).
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{762, 435}, {93, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC6gAAwwYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC6gAAwt4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC9AAAwtQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{813, 603}, {289, 173}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDTwAAwwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{773, 388}, {176, 83}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Main Display will not be shown.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Main Display will receive video from an engine determined by the NDS emulation.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Main Display will be forced to receive video from the Main Engine.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBfeAAwvoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Main Display will be forced to receive video from the Sub Engine.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{773, 362}, {176, 83}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Touch Display will be forced to receive video from the Sub Engine.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Touch Display will be forced to receive video from the Main Engine.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Touch Display will receive video from an engine determined by the NDS emulation.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, the Touch Display will not be shown.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDewAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{201, 470}, {175, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, arranges the NDS screens where one screen is above the other screen, just like a hardware NDS. This display layout uses the display separation setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ By default, arranges the NDS screens where one screen is to the left of the other screen. This display layout does not use the display separation setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDewAAwtgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{731, 312}, {182, 43}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ If the display layout is Vertical, then the Main Display will be positioned above the Touch Display by default. If the display layout is Horizontal, then the Main Display will be positioned left of the Touch Display by default. If the display layout is Hybrid, then the Main Display will be the major display by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ If the display layout is Vertical, then the Touch Display will be positioned above the Main Display by default. If the display layout is Horizontal, then the Touch Display will be positioned left of the Main Display by default. If the display layout is Hybrid, then the Touch Display will be the major display by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCDAAAwyQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCGAAAwuIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABB8AAAwowAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ P4AAAL+AAABBUAAAwogAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAwwkAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{587, 637}, {321, 183}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAwxkAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMrAABDyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDo4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDloAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDiYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDeQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDXwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABC4AAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC3gAAwzEAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAwvoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUNuAABDdQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOLgABClgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDIhQAwuwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDSOwAwrYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMoAABC1gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{617, 513}, {400, 114}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{617, 513}, {400, 114}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw3gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXQAAwpwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAww4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{888, 834}, {480, 177}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{888, 834}, {480, 177}}
+
+
+
+ {480, 177}
+ {480, 177}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAw8gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ DirectoryURLDragDestTextField
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBIAAAwxgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABD8AAAw9aAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{906, 273}, {474, 167}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABEBcAAw7uAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMkAABCJAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAw18AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABD0wAAw7iAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCngAAwzUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{948, 670}, {173, 105}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDwPcAw8YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDJAAAwxYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{827, 550}, {146, 88}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDuIAAwvwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1217, 79}, {189, 105}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMwAAw38AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{984, 179}, {146, 360}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwqoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOvgABCwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAwyQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDvIAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOwAAw4aAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMcAABBIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOcgABBIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBqAAAw9wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUEwAABDAgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAwzgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw0YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{670, 584}, {146, 54}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAwtgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwvQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{670, 527}, {146, 71}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAwfAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwjAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{670, 470}, {146, 88}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{888, 506}, {480, 245}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{888, 506}, {480, 245}}
+
+
+
+ {10000, 245}
+ {480, 245}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDRwAAwvAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDiAAAwrwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDdwAAwrYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMQAAwrwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAwrYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBgAAwuoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUEwAABDAgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAw8gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBqAAAw9wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABD8AAAw9aAAA
+
+ DirectoryURLDragDestTextField
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBoAAAw9SAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABEBcAAw7uAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABD0wAAw7iAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDwPcAw8YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBIAAAwxIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1415, 498}, {199, 166}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1415, 230}, {217, 383}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUEQAABC5gAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGoAABDJQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAwtwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwvgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{902, 75}, {160, 302}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwx8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMjAABDsIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw56AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{894, 394}, {474, 167}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwjAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAwfAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMkAABCJAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOcgABBIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUMcAABBIAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwvQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAwtgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAw0YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABA4AAAww4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOwAAw4aAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDvIAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMwAAw38AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDuIAAwvwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUOvgABCwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAwyQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDJAAAww4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{827, 550}, {146, 88}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwqoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{984, 475}, {200, 105}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{984, 179}, {146, 360}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{670, 584}, {146, 54}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{670, 527}, {146, 71}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAw18AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{670, 470}, {146, 88}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{854, 436}, {294, 378}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{854, 436}, {294, 378}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw4CAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBwAAwsIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDcgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwwUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABChgAAwdgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBsAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUFAAABDhIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwkgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDIQAAw4eAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1189, 635}, {135, 6}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw4YAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAw9IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDAAAw84AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDQwAAw94AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAC/gAAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC0gAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCnAAAwwUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC5AAAwwUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAwwUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOgAAwwUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAC/gAAAwpgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC0gAAwpgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDQAAwpgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMQAAwpgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCnAAAwp4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC5AAAwp4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAwp4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOgAAwp4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAC/gAAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC0gAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDQAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMQAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCnAAAwkwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC5AAAwkwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAwkwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOgAAwkwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAC/gAAAwagAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC0gAAwagAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDQAAwagAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMQAAwagAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCnAAAwcAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC5AAAwcAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAwcAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDOgAAwcAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAAA/gAAAwswAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCugAAwswAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUKWAABCqgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAwAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCyAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAwAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCyAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAwAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCyAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC5gAAw04AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDAAAw04AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCjAAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC4gAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCgAAwzgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCmgAAwy0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUNEAABDHAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAwAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCyAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAw0wAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAwAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCyAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAwyUAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAwygAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAwAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCyAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLAAAwwwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCkgAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2gAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAww8AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC5gAAw04AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDDAAAw04AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCjAAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC4gAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDFgAAw1EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCgAAwzgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCmgAAwy0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUNEAABDHAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the edges of 3D objects using multisample antialiasing (MSAA), where higher values provide more smoothing. No CPU usage. However, it requires additional VRAM from your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDHfoAwkQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1232, 379}, {70, 20}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCnIIAwdAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the edges of 3D objects using multisample antialiasing (MSAA), where higher values provide more smoothing. The value chosen will be the default value, although the actual MSAA value used will be limited by your GPU's capabilities. No CPU usage. However, it requires additional VRAM from your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{882, 143}, {80, 123}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAAAAAwxAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAAAAAwuYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAAAAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAAAAAwmAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAAAAAwdAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC/gAAwxAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDKQAAwxAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUwAAwxAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC/gAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDKQAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUwAAwqwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC/gAAwmAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDKQAAwmAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUwAAwmAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC/gAAwdAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDKQAAwdAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUwAAwdAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC2AAAwuYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCvAAAwxMAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwxMAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMgAAwxMAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXAAAwxMAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUK2AABCwAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCvAAAwrIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwrIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMgAAwrIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXAAAwrIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCvAAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMgAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXAAAwmwAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCvAAAwegAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAwegAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMgAAwegAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXAAAwegAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwzYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBmAAAwv4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDQAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCtAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLgAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCtAAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBAAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLgAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWAAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCtAAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBAAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLgAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWAAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCvgAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMwAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwzYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBYAAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBmAAAwv4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDGAAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDVAAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDhYAAwwQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDQAAAw08AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCtAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLgAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWAAAw1IAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCtAAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBAAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLgAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWAAAwyAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCtAAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDBAAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDLgAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDWAAAwwcAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCvgAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMwAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBUAAAwowAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1210, 321}, {218, 88}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{735, 483}, {260, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{323, 434}, {520, 422}}
+ {215, 355}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default size for new NDS display views.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{518, 587}, {126, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default rotation for new NDS display views.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{609, 541}, {196, 93}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ The default rotation for new NDS display views. A custom rotation angle may be entered here. (The angle must be between 0º and 360º.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1, 436}, {489, 420}}
+ {796.5, 896.5}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ InitialTabViewItem
+
+ InitialTabViewItem
+
+
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBUAAAw9KAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default pixel scaler for new NDS display views, producing a variety of visual effects. CPU (or GPU) usage is dependent on which scaler is used.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAADAQAAAw9qAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{925, 575}, {215, 173}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{925, 575}, {215, 173}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC6gAAwx0AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{329, 472}, {400, 373}}
+ {668, 408.5}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default sound volume.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{178, 718}, {132, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ New display views will show both NDS displays by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ New display views will show only the NDS Touch Display by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Performs no interpolation. This method produces the most accurate sound compared to the real hardware. All sound detail is preserved, but some sounds may sound harsh due to the presence of high-end harmonics. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the sound and eliminates the harsh sounding harmonics, but also causes a significant loss of sound detail, especially in the high-end. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Excellent sound quality, producing the best balance between smoothness and sound detail. Neglible CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{463, 480}, {554, 465}}
+
+ {686, 460.5}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUDAAABDpoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Greatly increases emulation accuracy, which improves the compatibility for most ROMs. This setting has a very high impact on overall emulation performance. Disabling this setting may dramatically improve performance, but may also cause some ROMs to stop working and cause other ROMs to show erratic behavior.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes more features available to the emulated hardware, but may affect ROM compatibility. May incur CPU usage, depending on which BIOS options are used.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the BIOS to use the ARM processor SWI routines. This is required for some ROMs to work properly. May CPU usage, depending on if the ROM uses the ARM SWIs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Prevents the Delay SWI from running. This may reduce the SWI-related CPU usage for some ROMs, but may also affect ROM compatibility.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses an external firmware image, overriding the internally emulated firmware. To change your firmware settings, you must do so through the emulated environment.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{505, 763}, {194, 73}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Performs no sound interpolation. This method produces the most accurate sound compared to the real hardware. All sound detail is preserved, but some sounds may sound harsh due to the presence of high-end harmonics. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the advanced SPU emulation engine, which improves the accuracy of the emulated sound. This option provides a richer audio experience. Medium CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Lowest latency and lowest CPU usage sound synchronization method that is compatible with the advanced SPU emulation engine. However, this method causes sound distortion as emulation speed decreases below normal, and causes sound detail loss as emulation speed increases above normal. Very low latency. Very low CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Pitch bends the sound depending on the emulation speed. Provides extremely smooth sound, but only when emulation speed is faster than normal. Medium latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Provides smooth sound at all emulation speeds, but with some added latency. High latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Has the lowest latency of all the sound synchronization methods, but is not compatible with the advanced SPU emulation engine. Neglible latency. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the use of more complex sound synchronization methods.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Upon emulator execution, starts the firmware instead of the ROM. This will allow you access to some of the emulated hardware features. To boot from firmware, an external firmware image and both BIOS images must be loaded.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1156, 396}, {380, 200}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{865, 914}, {500, 20}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1145, 512}, {302, 473}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{269, 683}, {151, 153}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{741, 693}, {335, 163}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{741, 693}, {335, 163}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwz4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{84, 262}, {640, 480}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{84, 262}, {640, 480}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAw+6AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1030, 95}, {248, 501}}
+ {50, 735.5}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1030, 95}, {248, 501}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the advanced SPU emulation engine, which improves the accuracy of the emulated sound. This option provides a richer audio experience. Medium CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGAAABDPQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGAAABCJAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Performs no interpolation. This method produces the most accurate sound compared to the real hardware. All sound detail is preserved, but some sounds may sound harsh due to the presence of high-end harmonics. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Smooths the sound and eliminates the harsh sounding harmonics, but also causes a significant loss of sound detail, especially in the high-end. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Has the lowest latency of all the sound synchronization methods, but is not compatible with the advanced SPU emulation engine. Neglible latency. Negligible CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the use of more complex sound synchronization methods.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Excellent sound quality, producing the best balance between smoothness and sound detail. Neglible CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the current sound volume.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will produce smoother color transitions than a standard NDS. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will emulate the NDS toon edge marking.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUAAAwogAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will render fog effects. This may affect the atmospheric look of some 3D scenes.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUAAAwkAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will render textures onto 3D surfaces. When not set, all 3D surfaces will be solid colored (usually white).
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDUAAAwrAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABC8AAAA
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDBgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1079, 302}, {273, 562}}
+ {193.5, 488.5}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1079, 302}, {273, 562}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCYAAAwcAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AULKAABC3AAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, SoftRasterizer will produce smoother color transitions than a standard NDS. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will emulate the NDS toon edge marking by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwkAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will render fog effects by default. This may affect the atmospheric look of some 3D scenes.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAweAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ When set, the 3D renderer will render textures onto 3D surfaces by default. When not set, all 3D surfaces will be solid colored (usually white).
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwogAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDzAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables 3D rendering. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ DeSmuME's internal software 3D rendering engine. Has the best 3D emulation accuracy. Very high CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default 3D rendering engine for rendering the NDS 3D layer.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDdAAAw7kAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables 3D rendering. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ DeSmuME's internal software 3D rendering engine. Has the best 3D emulation accuracy. Very high CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABClAAAw7eAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABDgAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default number of processing threads that DeSmuME will use for 3D rendering. This is an option for advanced users. For most cases, it's best to keep this set to Automatic.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDEQAAwggAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ DeSmuME automatically chooses the best number of rendering threads based on your hardware.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on the same thread as the core emulation thread by default. Best performance option for single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on two separate threads by default. May improve 3D performance on multiprocessor machines, but slightly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on four separate threads by default. May improve 3D performance on multiprocessor machines, but significantly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwfgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AULKAABDWQAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{863, 773}, {132, 63}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Lowest latency and lowest CPU usage sound synchronization method that is compatible with the advanced SPU emulation engine. However, this method causes sound distortion as emulation speed decreases below normal, and causes sound detail loss as emulation speed increases above normal. Very low latency. Very low CPU usage. Recommended setting.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Pitch bends the sound depending on the emulation speed. Provides extremely smooth sound, but only when emulation speed is faster than normal. Medium latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Provides smooth sound at all emulation speeds, but with some added latency. High latency. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default audio output engine.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables audio output. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Native audio output engine for Mac OS X. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Disables audio output. No CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Native audio output engine for Mac OS X. Low CPU usage.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1101, 298}, {286, 533}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1101, 298}, {286, 533}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Greatly increases emulation accuracy, which improves the compatibility for most ROMs. This setting has a very high impact on overall emulation performance. Disabling this setting may dramatically improve performance, but may also cause some ROMs to stop working and cause other ROMs to show erratic behavior.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes more features available to the emulated hardware, but may affect ROM compatibility. May incur CPU usage, depending on which BIOS options are used.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enables the BIOS to use the ARM processor SWI routines. This is required for some ROMs to work properly. May incur CPU usage, depending on if the ROM uses the ARM SWIs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Prevents the Delay SWI from running. This may reduce the SWI-related CPU usage for some ROMs, but may also affect ROM compatibility.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses an external firmware image, overriding the internally emulated firmware. To change your firmware settings, you must do so through the emulated environment.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Upon emulator execution, starts the firmware instead of the ROM. This will allow you access to some of the emulated hardware features. To boot from firmware, an external firmware image and both BIOS images must be loaded.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ For developer usage only.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{868, 99}, {260, 513}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMAAAwp4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Nicknames should be a maximum of 10 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Messages should be a maximum of 26 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{586, 344}, {309, 512}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{586, 344}, {309, 512}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Nicknames should be a maximum of 10 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Messages should be a maximum of 26 characters. Any additional characters will be truncated.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC0AAAwqQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ All addresses start with 0x02. Enter the last 6 digits of the address here in hexadecimal format.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Enter the numeric value to write to the target address.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Select the memory size of the target address in bytes.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{282, 566}, {320, 290}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Shows/hides the address search drawer.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Resets the memory address search.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{639, 678}, {136, 37}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Searches the NDS memory for all addresses that currently carry the search value.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Searches the NDS memory for any addresses which match the comparative search criteria.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{576, 723}, {261, 113}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{639, 654}, {203, 37}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Immediately writes the value once to the target address.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{768, 739}, {500, 416}}
+
+
+ {500, 272}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Whenever DeSmuME needs to determine a ROM's save type, use the ADVANsCEne database to determine the save type before using the internal autodetect algorithm.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ New display views will show only the NDS Main Display by default.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{466, 358}, {550, 450}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{466, 358}, {550, 450}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ InitialTabViewItem
+
+ InitialTabViewItem
+
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1077, 945}, {200, 183}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1050, 481}, {250, 433}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1382, 975}, {281, 153}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the classic interpreter engine to emulate the ARM7 and ARM9 CPUs by default. It features very high compatibility with most configurations, as well as high accuracy with most ROMs.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the dynarec engine to emulate the ARM7 and ARM9 CPUs by default. It features far superior performance to the Interpreter engine, but is not compatible with all configurations. Also, some ROMs may not work or may show erratic behavior when using this engine. (This feature is not available on a PowerPC-based Mac.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses the classic interpreter engine to emulate the ARM7 and ARM9 CPUs. It features very high compatibility with most configurations, as well as high accuracy with most ROMs. [Changes to the CPU emulation engine will only take effect after a ROM is loaded or after the emulator is reset.]
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Uses the dynarec engine to emulate the ARM7 and ARM9 CPUs. It features far superior performance to the interpreter engine, but is not compatible with all configurations. Also, some ROMs may not work or may show erratic behavior when using this engine. (This feature is not available on a PowerPC-based Mac.) [Changes to the CPU emulation engine will only take effect after a ROM is loaded or after the emulator is reset.]
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{863, 653}, {151, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{813, 693}, {182, 43}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUDAAABAoAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ OpenGL-based 3D rendering engine. Some 3D objects may have better looking texturing, but 3D emulation is less accurate overall. Low CPU usage. However, it requires the usage of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ OpenGL-based 3D rendering engine. Some 3D objects may have better looking texturing, but 3D emulation is less accurate overall. Low CPU usage. However, it requires the usage of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{892, 791}, {400, 100}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{892, 791}, {400, 100}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{534, 800}, {616, 0}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{42, 506}, {580, 592}}
+
+
+
+ {580, 592}
+ {580, 592}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{84, 175}, {580, 567}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{549, 289}, {580, 567}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{105, 152}, {580, 567}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AUGIAABB8AAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ AULKAABAoAAAA
+
+
+ ToolTip
+
+ ToolTip
+
+ Makes emulation timing more accurate, but may reduce ROM compatibility. Enabling this setting may improve 3D rendering performance.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Makes emulation timing more accurate, but may reduce ROM compatibility. Enabling this setting may improve 3D rendering performance.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on eight separate threads by default. May improve 3D performance on multiprocessor machines, but greatly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{463, 125}, {640, 495}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{517, 300}, {328, 434}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{784, 552}, {350, 263}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{885, 594}, {350, 125}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{310, 589}, {620, 267}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{789, 354}, {516, 283}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Generates a predefined buzzing sound.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Generates randomly generated white noise.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Generates a pure sine wave tone. Can be adjusted for frequency. (Some games, such as "The Legend of Zelda: Spirit Tracks," work especially well at 40 Hz.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Generates predefined samples taken from an audio file. (Whenever the Microphone command is deactivated, sample reading will be reset to the beginning of the file.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{900, 757}, {350, 125}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{21, 940}, {467, 160}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 346}, {620, 442}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 346}, {620, 442}}
+
+
+ {620, 180}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{780, 633}, {135, 143}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Saves the current configuration to the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Deletes the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Replaces the current configuration with the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renames the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Shows the selected profile.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{513, 743}, {265, 33}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Creates a new profile using the current configuration.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ InputProfileController
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{147, 847}, {452, 115}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{714, 583}, {118, 133}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ The default separation for new NDS display views. A custom gap percentage may be entered here. (The gap percentage must be between 0% and 200%.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default screen separation for new NDS display views. (A value of 100% will create a gap between the screens that has the same relative distance as a hardware NDS.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDmIAAwjQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDg4AAwjQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDXAAAwjQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDMgAAwjQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDCQAAwjQAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{873, 618}, {248, 148}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{873, 618}, {248, 148}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDaQAAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDp4AAwwIAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{863, 633}, {136, 163}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the screen separation to 0%, which removes any gap between the screens.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the screen separation to 100%, which creates a gap between the screens that has the same relative distance as a hardware NDS.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABCzgAAwsoAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 669}, {640, 303}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 669}, {640, 303}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Standard Retail Memory Card + ROM
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Choose a directory where the R4 device stores its data.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sends a SLOT-1 eject IRQ. The emulator will then detect that no device is inserted into SLOT-1.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Resets the emulation.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{863, 713}, {70, 103}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{806, 204}, {235, 355}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{806, 204}, {235, 355}}
+
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{899, 88}, {204, 745}}
+ {638, 1267}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{899, 88}, {204, 745}}
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{811, 710}, {218, 223}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Changes the maximum instruction block size for the dynamic recompiler. Larger values improve performance, but may reduce emulation accuracy. (The block size must be between 1 and 100.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Changes the default maximum instruction block size for the dynamic recompiler. Larger values improve performance, but may reduce emulation accuracy. (The block size must be between 1 and 100.)
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{1166, 665}, {316, 463}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{655, 347}, {173, 339}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{655, 347}, {173, 339}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBUAAAw/CAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwu4AAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{714, 203}, {132, 423}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAw9GAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwxsAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBkAAAwwsAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwsYAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When checked, the ROM data is only loaded as needed. When unchecked, all of the ROM data is completely preloaded into RAM before use.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{509, 91}, {640, 448}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Applies the selected SLOT-2 device's settings.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwswAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBgAAAwfAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABByAAAwdAAAA
+
+ {70, 698}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{672, 478}, {350, 240}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ {{703, 89}, {330, 811}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{703, 89}, {330, 811}}
+
+
+
+ {330, 811}
+ {330, 88}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{568, 620}, {254, 242}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{568, 620}, {254, 242}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Execute
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Frame Advance
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Reset
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Frame Jump
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Pause
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{482, 620}, {839, 167}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{482, 620}, {839, 167}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDioAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDNQAAwigAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, fragment colors will be sampled using an alternate algorithm. This may fix certain graphical glitches, such as the text in some Atlus games like Etrian Odyssey III.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, fragment colors will be sampled using an alternate algorithm. This may fix certain graphical glitches, such as the text in some Atlus games like Etrian Odyssey III.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Sets the default output filter for new NDS display views. No CPU usage. The use of any output filter (other than Nearest Neighbor and Bilinear) requires the use of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABDJwAAw6EAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, helps to preserve the color gradations of the video. This can compensate for poor color blending from the original 16-bit NDS color palette, or for posterization caused by certain filters. No CPU usage, but requires the use of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, filters will prefer to run on the GPU if possible. Otherwise, filters will prefer to run on the CPU if possible.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on 16 separate threads by default. May improve 3D performance on multiprocessor machines, but greatly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ Renders 3D on 32 separate threads by default. May improve 3D performance on multiprocessor machines, but greatly reduces performance on single processor machines.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{714, 643}, {134, 23}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{714, 523}, {235, 123}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, filters will prefer to run on the GPU if possible. Otherwise, filters will prefer to run on the CPU if possible.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBiAAAxDSAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ToolTip
+
+ ToolTip
+
+ When set, helps to preserve the color gradations of the video. This can compensate for poor color blending from the original 16-bit NDS color palette, or for posterization caused by certain filters. No CPU usage, but requires the use of your GPU.
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAweAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABBcAAAwdgAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ P4AAAL+AAABC/AAAwfAAAA
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{988, 125}, {110, 132}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{848, 607}, {290, 119}}
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{0, 429}, {700, 405}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{0, 429}, {700, 405}}
+
+
+ {700, 250}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ YES
+
+
+ YES
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 415}, {390, 309}}
+ {99.5, 246.5}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{329, 415}, {390, 309}}
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {289.5, 186}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ YES
+
+
+ YES
+
+
+
+
+ YES
+
+
+ YES
+
+
+
+ 12173
+
+
+
+ YES
+
+ AppDelegate
+ NSObject
+
+ YES
+
+ YES
+ bugReport:
+ launchForums:
+ launchWebsite:
+ supportRequest:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ bugReport:
+ launchForums:
+ launchWebsite:
+ supportRequest:
+
+
+ YES
+
+ bugReport:
+ id
+
+
+ launchForums:
+ id
+
+
+ launchWebsite:
+ id
+
+
+ supportRequest:
+ id
+
+
+
+
+ YES
+
+ YES
+ aboutWindowController
+ avCaptureToolDelegate
+ cdsCoreController
+ emuControlController
+ inputPrefsView
+ mLoadStateSlot
+ mSaveStateSlot
+ migrationDelegate
+ prefWindow
+ prefWindowController
+ troubleshootingWindow
+ wifiSettingsPanelDelegate
+
+
+ YES
+ NSObjectController
+ MacAVCaptureToolDelegate
+ NSObjectController
+ NSObjectController
+ InputPrefsView
+ NSMenu
+ NSMenu
+ FileMigrationDelegate
+ NSWindow
+ NSObjectController
+ NSWindow
+ WifiSettingsPanelDelegate
+
+
+
+ YES
+
+ YES
+ aboutWindowController
+ avCaptureToolDelegate
+ cdsCoreController
+ emuControlController
+ inputPrefsView
+ mLoadStateSlot
+ mSaveStateSlot
+ migrationDelegate
+ prefWindow
+ prefWindowController
+ troubleshootingWindow
+ wifiSettingsPanelDelegate
+
+
+ YES
+
+ aboutWindowController
+ NSObjectController
+
+
+ avCaptureToolDelegate
+ MacAVCaptureToolDelegate
+
+
+ cdsCoreController
+ NSObjectController
+
+
+ emuControlController
+ NSObjectController
+
+
+ inputPrefsView
+ InputPrefsView
+
+
+ mLoadStateSlot
+ NSMenu
+
+
+ mSaveStateSlot
+ NSMenu
+
+
+ migrationDelegate
+ FileMigrationDelegate
+
+
+ prefWindow
+ NSWindow
+
+
+ prefWindowController
+ NSObjectController
+
+
+ troubleshootingWindow
+ NSWindow
+
+
+ wifiSettingsPanelDelegate
+ WifiSettingsPanelDelegate
+
+
+
+
+ IBProjectSource
+ userinterface/appDelegate.h
+
+
+
+ CheatWindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ addToList:
+ applyConfiguration:
+ closeCheatDatabaseSheet:
+ removeFromList:
+ resetSearch:
+ runComparativeSearch:
+ runExactValueSearch:
+ selectAllCheatsInDatabase:
+ selectCheatSearchStyle:
+ selectCheatType:
+ selectNoneCheatsInDatabase:
+ setInternalCheatValue:
+ viewDatabase:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ addToList:
+ applyConfiguration:
+ closeCheatDatabaseSheet:
+ removeFromList:
+ resetSearch:
+ runComparativeSearch:
+ runExactValueSearch:
+ selectAllCheatsInDatabase:
+ selectCheatSearchStyle:
+ selectCheatType:
+ selectNoneCheatsInDatabase:
+ setInternalCheatValue:
+ viewDatabase:
+
+
+ YES
+
+ addToList:
+ id
+
+
+ applyConfiguration:
+ id
+
+
+ closeCheatDatabaseSheet:
+ id
+
+
+ removeFromList:
+ id
+
+
+ resetSearch:
+ id
+
+
+ runComparativeSearch:
+ id
+
+
+ runExactValueSearch:
+ id
+
+
+ selectAllCheatsInDatabase:
+ id
+
+
+ selectCheatSearchStyle:
+ id
+
+
+ selectCheatType:
+ id
+
+
+ selectNoneCheatsInDatabase:
+ id
+
+
+ setInternalCheatValue:
+ id
+
+
+ viewDatabase:
+ id
+
+
+
+
+ YES
+
+ YES
+ cheatConfigBox
+ cheatDatabaseController
+ cheatDatabaseSheet
+ cheatListController
+ cheatListTable
+ cheatSearchListController
+ cheatSearchListTable
+ cheatSearchView
+ cheatSelectedItemController
+ cheatWindowController
+ searchField
+ viewConfigureActionReplayCheat
+ viewConfigureCodeBreakerCheat
+ viewConfigureInternalCheat
+ viewConfigureNoSelection
+ viewSearchComparativeContinue
+ viewSearchComparativeStart
+ viewSearchExactValue
+ viewSearchNoSelection
+ window
+
+
+ YES
+ NSBox
+ NSArrayController
+ NSWindow
+ NSArrayController
+ NSTableView
+ NSArrayController
+ NSTableView
+ NSView
+ NSObjectController
+ NSObjectController
+ NSSearchField
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ cheatConfigBox
+ cheatDatabaseController
+ cheatDatabaseSheet
+ cheatListController
+ cheatListTable
+ cheatSearchListController
+ cheatSearchListTable
+ cheatSearchView
+ cheatSelectedItemController
+ cheatWindowController
+ searchField
+ viewConfigureActionReplayCheat
+ viewConfigureCodeBreakerCheat
+ viewConfigureInternalCheat
+ viewConfigureNoSelection
+ viewSearchComparativeContinue
+ viewSearchComparativeStart
+ viewSearchExactValue
+ viewSearchNoSelection
+ window
+
+
+ YES
+
+ cheatConfigBox
+ NSBox
+
+
+ cheatDatabaseController
+ NSArrayController
+
+
+ cheatDatabaseSheet
+ NSWindow
+
+
+ cheatListController
+ NSArrayController
+
+
+ cheatListTable
+ NSTableView
+
+
+ cheatSearchListController
+ NSArrayController
+
+
+ cheatSearchListTable
+ NSTableView
+
+
+ cheatSearchView
+ NSView
+
+
+ cheatSelectedItemController
+ NSObjectController
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ searchField
+ NSSearchField
+
+
+ viewConfigureActionReplayCheat
+ NSView
+
+
+ viewConfigureCodeBreakerCheat
+ NSView
+
+
+ viewConfigureInternalCheat
+ NSView
+
+
+ viewConfigureNoSelection
+ NSView
+
+
+ viewSearchComparativeContinue
+ NSView
+
+
+ viewSearchComparativeStart
+ NSView
+
+
+ viewSearchExactValue
+ NSView
+
+
+ viewSearchNoSelection
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/cheatWindowDelegate.h
+
+
+
+ DirectoryURLDragDestTextField
+ NSTextField
+
+ IBProjectSource
+ cocoa_util.h
+
+
+
+ DisplayPreviewView
+ NSView
+
+ IBProjectSource
+ userinterface/preferencesWindowDelegate.h
+
+
+
+ DisplayWindowController
+ NSWindowController
+
+ YES
+
+ YES
+ changeCoreSpeed:
+ changeDisplayGap:
+ changeDisplayMode:
+ changeDisplayOrder:
+ changeDisplayOrientation:
+ changeDisplayVideoSource:
+ changeHardwareMicGain:
+ changeHardwareMicMute:
+ changeRotation:
+ changeRotationRelative:
+ changeScale:
+ changeVideoOutputFilter:
+ changeVideoPixelScaler:
+ changeVolume:
+ copy:
+ frameAdvance:
+ openRom:
+ reset:
+ toggleExecutePause:
+ toggleFullScreenDisplay:
+ toggleHUDVisibility:
+ toggleKeepMinDisplaySizeAtNormal:
+ toggleNDSDisplays:
+ toggleShowHUDCPULoadAverage:
+ toggleShowHUDExecutionSpeed:
+ toggleShowHUDFrameIndex:
+ toggleShowHUDInput:
+ toggleShowHUDLagFrameCount:
+ toggleShowHUDRealTimeClock:
+ toggleShowHUDRender3DFPS:
+ toggleShowHUDVideoFPS:
+ toggleStatusBar:
+ toggleVideoFiltersPreferGPU:
+ toggleVideoSourceDeposterize:
+ writeDefaultsDisplayGap:
+ writeDefaultsDisplayRotation:
+ writeDefaultsDisplayVideoSettings:
+ writeDefaultsHUDSettings:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ changeCoreSpeed:
+ changeDisplayGap:
+ changeDisplayMode:
+ changeDisplayOrder:
+ changeDisplayOrientation:
+ changeDisplayVideoSource:
+ changeHardwareMicGain:
+ changeHardwareMicMute:
+ changeRotation:
+ changeRotationRelative:
+ changeScale:
+ changeVideoOutputFilter:
+ changeVideoPixelScaler:
+ changeVolume:
+ copy:
+ frameAdvance:
+ openRom:
+ reset:
+ toggleExecutePause:
+ toggleFullScreenDisplay:
+ toggleHUDVisibility:
+ toggleKeepMinDisplaySizeAtNormal:
+ toggleNDSDisplays:
+ toggleShowHUDCPULoadAverage:
+ toggleShowHUDExecutionSpeed:
+ toggleShowHUDFrameIndex:
+ toggleShowHUDInput:
+ toggleShowHUDLagFrameCount:
+ toggleShowHUDRealTimeClock:
+ toggleShowHUDRender3DFPS:
+ toggleShowHUDVideoFPS:
+ toggleStatusBar:
+ toggleVideoFiltersPreferGPU:
+ toggleVideoSourceDeposterize:
+ writeDefaultsDisplayGap:
+ writeDefaultsDisplayRotation:
+ writeDefaultsDisplayVideoSettings:
+ writeDefaultsHUDSettings:
+
+
+ YES
+
+ changeCoreSpeed:
+ id
+
+
+ changeDisplayGap:
+ id
+
+
+ changeDisplayMode:
+ id
+
+
+ changeDisplayOrder:
+ id
+
+
+ changeDisplayOrientation:
+ id
+
+
+ changeDisplayVideoSource:
+ id
+
+
+ changeHardwareMicGain:
+ id
+
+
+ changeHardwareMicMute:
+ id
+
+
+ changeRotation:
+ id
+
+
+ changeRotationRelative:
+ id
+
+
+ changeScale:
+ id
+
+
+ changeVideoOutputFilter:
+ id
+
+
+ changeVideoPixelScaler:
+ id
+
+
+ changeVolume:
+ id
+
+
+ copy:
+ id
+
+
+ frameAdvance:
+ id
+
+
+ openRom:
+ id
+
+
+ reset:
+ id
+
+
+ toggleExecutePause:
+ id
+
+
+ toggleFullScreenDisplay:
+ id
+
+
+ toggleHUDVisibility:
+ id
+
+
+ toggleKeepMinDisplaySizeAtNormal:
+ id
+
+
+ toggleNDSDisplays:
+ id
+
+
+ toggleShowHUDCPULoadAverage:
+ id
+
+
+ toggleShowHUDExecutionSpeed:
+ id
+
+
+ toggleShowHUDFrameIndex:
+ id
+
+
+ toggleShowHUDInput:
+ id
+
+
+ toggleShowHUDLagFrameCount:
+ id
+
+
+ toggleShowHUDRealTimeClock:
+ id
+
+
+ toggleShowHUDRender3DFPS:
+ id
+
+
+ toggleShowHUDVideoFPS:
+ id
+
+
+ toggleStatusBar:
+ id
+
+
+ toggleVideoFiltersPreferGPU:
+ id
+
+
+ toggleVideoSourceDeposterize:
+ id
+
+
+ writeDefaultsDisplayGap:
+ id
+
+
+ writeDefaultsDisplayRotation:
+ id
+
+
+ writeDefaultsDisplayVideoSettings:
+ id
+
+
+ writeDefaultsHUDSettings:
+ id
+
+
+
+
+ YES
+
+ YES
+ microphoneGainControlView
+ microphoneGainMenuItem
+ microphoneGainSlider
+ microphoneMuteButton
+ outputVolumeControlView
+ outputVolumeMenuItem
+
+
+ YES
+ NSView
+ NSMenuItem
+ NSSlider
+ NSButton
+ NSView
+ NSMenuItem
+
+
+
+ YES
+
+ YES
+ microphoneGainControlView
+ microphoneGainMenuItem
+ microphoneGainSlider
+ microphoneMuteButton
+ outputVolumeControlView
+ outputVolumeMenuItem
+
+
+ YES
+
+ microphoneGainControlView
+ NSView
+
+
+ microphoneGainMenuItem
+ NSMenuItem
+
+
+ microphoneGainSlider
+ NSSlider
+
+
+ microphoneMuteButton
+ NSButton
+
+
+ outputVolumeControlView
+ NSView
+
+
+ outputVolumeMenuItem
+ NSMenuItem
+
+
+
+
+ IBProjectSource
+ userinterface/DisplayWindowController.h
+
+
+
+ EmuControllerDelegate
+ NSObject
+
+ YES
+
+ YES
+ autoholdClear:
+ autoholdSet:
+ changeAudioEngine:
+ changeCoreSpeed:
+ changeFirmwareSettings:
+ changeHardwareMicGain:
+ changeHardwareMicMute:
+ changeRomSaveType:
+ changeSpuAdvancedLogic:
+ changeSpuInterpolationMode:
+ changeSpuSyncMethod:
+ changeSpuSyncMode:
+ changeVolume:
+ chooseSlot1R4Directory:
+ closeRom:
+ closeSheet:
+ coreExecute:
+ corePause:
+ exportRomSave:
+ frameAdvance:
+ frameJump:
+ generateFirmwareMACAddress:
+ importRomSave:
+ loadEmuSaveStateSlot:
+ loadRecentRom:
+ newDisplayWindow:
+ openEmuSaveState:
+ openReplay:
+ openRom:
+ recordReplay:
+ reset:
+ revealGameDataFolderInFinder:
+ revealRomInFinder:
+ revertEmuSaveState:
+ saveEmuSaveState:
+ saveEmuSaveStateAs:
+ saveEmuSaveStateSlot:
+ setVerticalSyncForNonLayerBackedViews:
+ simulateEmulationCrash:
+ slot1Eject:
+ stopReplay:
+ toggleAllDisplays:
+ toggleAutoFrameSkip:
+ toggleCheats:
+ toggleExecutePause:
+ toggleGDBStubActivate:
+ toggleGPUState:
+ toggleSpeedLimiter:
+ writeDefaults3DRenderingSettings:
+ writeDefaultsEmulationSettings:
+ writeDefaultsSlot1Settings:
+ writeDefaultsSoundSettings:
+ writeDefaultsStylusSettings:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ autoholdClear:
+ autoholdSet:
+ changeAudioEngine:
+ changeCoreSpeed:
+ changeFirmwareSettings:
+ changeHardwareMicGain:
+ changeHardwareMicMute:
+ changeRomSaveType:
+ changeSpuAdvancedLogic:
+ changeSpuInterpolationMode:
+ changeSpuSyncMethod:
+ changeSpuSyncMode:
+ changeVolume:
+ chooseSlot1R4Directory:
+ closeRom:
+ closeSheet:
+ coreExecute:
+ corePause:
+ exportRomSave:
+ frameAdvance:
+ frameJump:
+ generateFirmwareMACAddress:
+ importRomSave:
+ loadEmuSaveStateSlot:
+ loadRecentRom:
+ newDisplayWindow:
+ openEmuSaveState:
+ openReplay:
+ openRom:
+ recordReplay:
+ reset:
+ revealGameDataFolderInFinder:
+ revealRomInFinder:
+ revertEmuSaveState:
+ saveEmuSaveState:
+ saveEmuSaveStateAs:
+ saveEmuSaveStateSlot:
+ setVerticalSyncForNonLayerBackedViews:
+ simulateEmulationCrash:
+ slot1Eject:
+ stopReplay:
+ toggleAllDisplays:
+ toggleAutoFrameSkip:
+ toggleCheats:
+ toggleExecutePause:
+ toggleGDBStubActivate:
+ toggleGPUState:
+ toggleSpeedLimiter:
+ writeDefaults3DRenderingSettings:
+ writeDefaultsEmulationSettings:
+ writeDefaultsSlot1Settings:
+ writeDefaultsSoundSettings:
+ writeDefaultsStylusSettings:
+
+
+ YES
+
+ autoholdClear:
+ id
+
+
+ autoholdSet:
+ id
+
+
+ changeAudioEngine:
+ id
+
+
+ changeCoreSpeed:
+ id
+
+
+ changeFirmwareSettings:
+ id
+
+
+ changeHardwareMicGain:
+ id
+
+
+ changeHardwareMicMute:
+ id
+
+
+ changeRomSaveType:
+ id
+
+
+ changeSpuAdvancedLogic:
+ id
+
+
+ changeSpuInterpolationMode:
+ id
+
+
+ changeSpuSyncMethod:
+ id
+
+
+ changeSpuSyncMode:
+ id
+
+
+ changeVolume:
+ id
+
+
+ chooseSlot1R4Directory:
+ id
+
+
+ closeRom:
+ id
+
+
+ closeSheet:
+ id
+
+
+ coreExecute:
+ id
+
+
+ corePause:
+ id
+
+
+ exportRomSave:
+ id
+
+
+ frameAdvance:
+ id
+
+
+ frameJump:
+ id
+
+
+ generateFirmwareMACAddress:
+ id
+
+
+ importRomSave:
+ id
+
+
+ loadEmuSaveStateSlot:
+ id
+
+
+ loadRecentRom:
+ id
+
+
+ newDisplayWindow:
+ id
+
+
+ openEmuSaveState:
+ id
+
+
+ openReplay:
+ id
+
+
+ openRom:
+ id
+
+
+ recordReplay:
+ id
+
+
+ reset:
+ id
+
+
+ revealGameDataFolderInFinder:
+ id
+
+
+ revealRomInFinder:
+ id
+
+
+ revertEmuSaveState:
+ id
+
+
+ saveEmuSaveState:
+ id
+
+
+ saveEmuSaveStateAs:
+ id
+
+
+ saveEmuSaveStateSlot:
+ id
+
+
+ setVerticalSyncForNonLayerBackedViews:
+ id
+
+
+ simulateEmulationCrash:
+ id
+
+
+ slot1Eject:
+ id
+
+
+ stopReplay:
+ id
+
+
+ toggleAllDisplays:
+ id
+
+
+ toggleAutoFrameSkip:
+ id
+
+
+ toggleCheats:
+ id
+
+
+ toggleExecutePause:
+ id
+
+
+ toggleGDBStubActivate:
+ id
+
+
+ toggleGPUState:
+ id
+
+
+ toggleSpeedLimiter:
+ id
+
+
+ writeDefaults3DRenderingSettings:
+ id
+
+
+ writeDefaultsEmulationSettings:
+ id
+
+
+ writeDefaultsSlot1Settings:
+ id
+
+
+ writeDefaultsSoundSettings:
+ id
+
+
+ writeDefaultsStylusSettings:
+ id
+
+
+
+
+ YES
+
+ YES
+ avCaptureToolDelegate
+ cdsCoreController
+ cdsSoundController
+ cheatDatabaseController
+ cheatListController
+ cheatWindowController
+ cheatWindowDelegate
+ displayHUDSettingsPanel
+ displayRotationPanel
+ displaySeparationPanel
+ displayVideoSettingsPanel
+ executionControlWindow
+ exportRomSavePanelAccessoryView
+ firmwarePanelController
+ inputDeviceListController
+ inputManager
+ ndsErrorSheet
+ ndsErrorStatusTextField
+ openglMSAAPopUpButton
+ prefWindowDelegate
+ romInfoPanel
+ romInfoPanelController
+ saveFileMigrationSheet
+ saveStatePrecloseSheet
+ screenshotCaptureToolDelegate
+ slot1ManagerWindow
+ slot2WindowController
+
+
+ YES
+ MacAVCaptureToolDelegate
+ NSObjectController
+ NSObjectController
+ NSArrayController
+ NSArrayController
+ NSObjectController
+ CheatWindowDelegate
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSView
+ NSObjectController
+ NSArrayController
+ InputManager
+ NSWindow
+ NSTextField
+ NSPopUpButton
+ PreferencesWindowDelegate
+ RomInfoPanel
+ NSObjectController
+ NSWindow
+ NSWindow
+ MacScreenshotCaptureToolDelegate
+ NSWindow
+ NSObjectController
+
+
+
+ YES
+
+ YES
+ avCaptureToolDelegate
+ cdsCoreController
+ cdsSoundController
+ cheatDatabaseController
+ cheatListController
+ cheatWindowController
+ cheatWindowDelegate
+ displayHUDSettingsPanel
+ displayRotationPanel
+ displaySeparationPanel
+ displayVideoSettingsPanel
+ executionControlWindow
+ exportRomSavePanelAccessoryView
+ firmwarePanelController
+ inputDeviceListController
+ inputManager
+ ndsErrorSheet
+ ndsErrorStatusTextField
+ openglMSAAPopUpButton
+ prefWindowDelegate
+ romInfoPanel
+ romInfoPanelController
+ saveFileMigrationSheet
+ saveStatePrecloseSheet
+ screenshotCaptureToolDelegate
+ slot1ManagerWindow
+ slot2WindowController
+
+
+ YES
+
+ avCaptureToolDelegate
+ MacAVCaptureToolDelegate
+
+
+ cdsCoreController
+ NSObjectController
+
+
+ cdsSoundController
+ NSObjectController
+
+
+ cheatDatabaseController
+ NSArrayController
+
+
+ cheatListController
+ NSArrayController
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ cheatWindowDelegate
+ CheatWindowDelegate
+
+
+ displayHUDSettingsPanel
+ NSWindow
+
+
+ displayRotationPanel
+ NSWindow
+
+
+ displaySeparationPanel
+ NSWindow
+
+
+ displayVideoSettingsPanel
+ NSWindow
+
+
+ executionControlWindow
+ NSWindow
+
+
+ exportRomSavePanelAccessoryView
+ NSView
+
+
+ firmwarePanelController
+ NSObjectController
+
+
+ inputDeviceListController
+ NSArrayController
+
+
+ inputManager
+ InputManager
+
+
+ ndsErrorSheet
+ NSWindow
+
+
+ ndsErrorStatusTextField
+ NSTextField
+
+
+ openglMSAAPopUpButton
+ NSPopUpButton
+
+
+ prefWindowDelegate
+ PreferencesWindowDelegate
+
+
+ romInfoPanel
+ RomInfoPanel
+
+
+ romInfoPanelController
+ NSObjectController
+
+
+ saveFileMigrationSheet
+ NSWindow
+
+
+ saveStatePrecloseSheet
+ NSWindow
+
+
+ screenshotCaptureToolDelegate
+ MacScreenshotCaptureToolDelegate
+
+
+ slot1ManagerWindow
+ NSWindow
+
+
+ slot2WindowController
+ NSObjectController
+
+
+
+
+ IBProjectSource
+ userinterface/EmuControllerDelegate.h
+
+
+
+ FileMigrationDelegate
+ NSObject
+
+ YES
+
+ YES
+ handleChoice:
+ updateAndShowWindow:
+
+
+ YES
+ id
+ id
+
+
+
+ YES
+
+ YES
+ handleChoice:
+ updateAndShowWindow:
+
+
+ YES
+
+ handleChoice:
+ id
+
+
+ updateAndShowWindow:
+ id
+
+
+
+
+ YES
+
+ YES
+ fileTreeOutlineView
+ window
+
+
+ YES
+ NSOutlineView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ fileTreeOutlineView
+ window
+
+
+ YES
+
+ fileTreeOutlineView
+ NSOutlineView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/FileMigrationDelegate.h
+
+
+
+ InputManager
+ NSObject
+
+ YES
+
+ YES
+ emuControl
+ hidInputTarget
+
+
+ YES
+ EmuControllerDelegate
+ id
+
+
+
+ YES
+
+ YES
+ emuControl
+ hidInputTarget
+
+
+ YES
+
+ emuControl
+ EmuControllerDelegate
+
+
+ hidInputTarget
+ id
+
+
+
+
+ IBProjectSource
+ userinterface/InputManager.h
+
+
+
+ InputPrefsView
+ NSView
+
+ YES
+
+ YES
+ audioFileChoose:
+ audioFileChooseNone:
+ changeSpeed:
+ closeProfileRenameSheet:
+ closeProfileSheet:
+ closeSettingsSheet:
+ profileApply:
+ profileDelete:
+ profileNew:
+ profileRename:
+ profileSave:
+ profileSelect:
+ profileView:
+ removeInput:
+ setInputAdd:
+ setTurboPatternBits:
+ setTurboPatternUsingTag:
+ showSettingsSheet:
+ updateCustomTurboPatternControls:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ audioFileChoose:
+ audioFileChooseNone:
+ changeSpeed:
+ closeProfileRenameSheet:
+ closeProfileSheet:
+ closeSettingsSheet:
+ profileApply:
+ profileDelete:
+ profileNew:
+ profileRename:
+ profileSave:
+ profileSelect:
+ profileView:
+ removeInput:
+ setInputAdd:
+ setTurboPatternBits:
+ setTurboPatternUsingTag:
+ showSettingsSheet:
+ updateCustomTurboPatternControls:
+
+
+ YES
+
+ audioFileChoose:
+ id
+
+
+ audioFileChooseNone:
+ id
+
+
+ changeSpeed:
+ id
+
+
+ closeProfileRenameSheet:
+ id
+
+
+ closeProfileSheet:
+ id
+
+
+ closeSettingsSheet:
+ id
+
+
+ profileApply:
+ id
+
+
+ profileDelete:
+ id
+
+
+ profileNew:
+ id
+
+
+ profileRename:
+ id
+
+
+ profileSave:
+ id
+
+
+ profileSelect:
+ id
+
+
+ profileView:
+ id
+
+
+ removeInput:
+ id
+
+
+ setInputAdd:
+ id
+
+
+ setTurboPatternBits:
+ id
+
+
+ setTurboPatternUsingTag:
+ id
+
+
+ showSettingsSheet:
+ id
+
+
+ updateCustomTurboPatternControls:
+ id
+
+
+
+
+ YES
+
+ YES
+ inputManager
+ inputPrefOutlineView
+ inputProfileController
+ inputProfileMenu
+ inputProfileNextButton
+ inputProfilePreviousButton
+ inputProfileRenameSheet
+ inputProfileSheet
+ inputSettingsController
+ inputSettingsGPUState
+ inputSettingsLoadStateSlot
+ inputSettingsMicrophone
+ inputSettingsNDSInput
+ inputSettingsPaddleController
+ inputSettingsSaveStateSlot
+ inputSettingsSetSpeedLimit
+ inputSettingsTouch
+ prefWindow
+ turboPatternControl
+
+
+ YES
+ InputManager
+ NSOutlineView
+ InputProfileController
+ NSPopUpButton
+ NSButton
+ NSButton
+ NSWindow
+ NSWindow
+ NSObjectController
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSWindow
+ NSSegmentedControl
+
+
+
+ YES
+
+ YES
+ inputManager
+ inputPrefOutlineView
+ inputProfileController
+ inputProfileMenu
+ inputProfileNextButton
+ inputProfilePreviousButton
+ inputProfileRenameSheet
+ inputProfileSheet
+ inputSettingsController
+ inputSettingsGPUState
+ inputSettingsLoadStateSlot
+ inputSettingsMicrophone
+ inputSettingsNDSInput
+ inputSettingsPaddleController
+ inputSettingsSaveStateSlot
+ inputSettingsSetSpeedLimit
+ inputSettingsTouch
+ prefWindow
+ turboPatternControl
+
+
+ YES
+
+ inputManager
+ InputManager
+
+
+ inputPrefOutlineView
+ NSOutlineView
+
+
+ inputProfileController
+ InputProfileController
+
+
+ inputProfileMenu
+ NSPopUpButton
+
+
+ inputProfileNextButton
+ NSButton
+
+
+ inputProfilePreviousButton
+ NSButton
+
+
+ inputProfileRenameSheet
+ NSWindow
+
+
+ inputProfileSheet
+ NSWindow
+
+
+ inputSettingsController
+ NSObjectController
+
+
+ inputSettingsGPUState
+ NSWindow
+
+
+ inputSettingsLoadStateSlot
+ NSWindow
+
+
+ inputSettingsMicrophone
+ NSWindow
+
+
+ inputSettingsNDSInput
+ NSWindow
+
+
+ inputSettingsPaddleController
+ NSWindow
+
+
+ inputSettingsSaveStateSlot
+ NSWindow
+
+
+ inputSettingsSetSpeedLimit
+ NSWindow
+
+
+ inputSettingsTouch
+ NSWindow
+
+
+ prefWindow
+ NSWindow
+
+
+ turboPatternControl
+ NSSegmentedControl
+
+
+
+
+ IBProjectSource
+ userinterface/inputPrefsView.h
+
+
+
+ InputProfileController
+ NSObjectController
+
+ YES
+
+ YES
+ inputManager
+ profileOutlineView
+
+
+ YES
+ InputManager
+ NSOutlineView
+
+
+
+ YES
+
+ YES
+ inputManager
+ profileOutlineView
+
+
+ YES
+
+ inputManager
+ InputManager
+
+
+ profileOutlineView
+ NSOutlineView
+
+
+
+
+ IBProjectSource
+ userinterface/InputProfileController.h
+
+
+
+ MacAVCaptureToolDelegate
+ MacBaseCaptureToolDelegate
+
+ toggleRecordingState:
+ id
+
+
+ toggleRecordingState:
+
+ toggleRecordingState:
+ id
+
+
+
+ recordButton
+ NSButton
+
+
+ recordButton
+
+ recordButton
+ NSButton
+
+
+
+ IBProjectSource
+ userinterface/MacAVCaptureTool.h
+
+
+
+ MacBaseCaptureToolDelegate
+ NSObject
+
+ chooseDirectoryPath:
+ id
+
+
+ chooseDirectoryPath:
+
+ chooseDirectoryPath:
+ id
+
+
+
+ YES
+
+ YES
+ saveDirectoryPathTextField
+ window
+
+
+ YES
+ DirectoryURLDragDestTextField
+ NSWindow
+
+
+
+ YES
+
+ YES
+ saveDirectoryPathTextField
+ window
+
+
+ YES
+
+ saveDirectoryPathTextField
+ DirectoryURLDragDestTextField
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/MacBaseCaptureTool.h
+
+
+
+ MacScreenshotCaptureToolDelegate
+ MacBaseCaptureToolDelegate
+
+ takeScreenshot:
+ id
+
+
+ takeScreenshot:
+
+ takeScreenshot:
+ id
+
+
+
+ IBProjectSource
+ userinterface/MacScreenshotCaptureTool.h
+
+
+
+ PreferencesWindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ changePrefView:
+ chooseARM7BiosImage:
+ chooseARM9BiosImage:
+ chooseAdvansceneDatabase:
+ chooseCheatDatabase:
+ chooseFirmwareImage:
+ chooseRomForAutoload:
+ closeFirmwareConfigSheet:
+ configureInternalFirmware:
+ generateFirmwareMACAddress:
+ selectDisplayRotation:
+ selectOutputFilter:
+ selectPixelScaler:
+ selectSPUSyncMethod:
+ selectSPUSyncMode:
+ updateFiltersPreferGPU:
+ updateFirmwareMACAddressString:
+ updateSourceDeposterize:
+ updateSubnetMaskString_AP1:
+ updateSubnetMaskString_AP2:
+ updateSubnetMaskString_AP3:
+ updateVolumeIcon:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ changePrefView:
+ chooseARM7BiosImage:
+ chooseARM9BiosImage:
+ chooseAdvansceneDatabase:
+ chooseCheatDatabase:
+ chooseFirmwareImage:
+ chooseRomForAutoload:
+ closeFirmwareConfigSheet:
+ configureInternalFirmware:
+ generateFirmwareMACAddress:
+ selectDisplayRotation:
+ selectOutputFilter:
+ selectPixelScaler:
+ selectSPUSyncMethod:
+ selectSPUSyncMode:
+ updateFiltersPreferGPU:
+ updateFirmwareMACAddressString:
+ updateSourceDeposterize:
+ updateSubnetMaskString_AP1:
+ updateSubnetMaskString_AP2:
+ updateSubnetMaskString_AP3:
+ updateVolumeIcon:
+
+
+ YES
+
+ changePrefView:
+ id
+
+
+ chooseARM7BiosImage:
+ id
+
+
+ chooseARM9BiosImage:
+ id
+
+
+ chooseAdvansceneDatabase:
+ id
+
+
+ chooseCheatDatabase:
+ id
+
+
+ chooseFirmwareImage:
+ id
+
+
+ chooseRomForAutoload:
+ id
+
+
+ closeFirmwareConfigSheet:
+ id
+
+
+ configureInternalFirmware:
+ id
+
+
+ generateFirmwareMACAddress:
+ id
+
+
+ selectDisplayRotation:
+ id
+
+
+ selectOutputFilter:
+ id
+
+
+ selectPixelScaler:
+ id
+
+
+ selectSPUSyncMethod:
+ id
+
+
+ selectSPUSyncMode:
+ id
+
+
+ updateFiltersPreferGPU:
+ id
+
+
+ updateFirmwareMACAddressString:
+ id
+
+
+ updateSourceDeposterize:
+ id
+
+
+ updateSubnetMaskString_AP1:
+ id
+
+
+ updateSubnetMaskString_AP2:
+ id
+
+
+ updateSubnetMaskString_AP3:
+ id
+
+
+ updateVolumeIcon:
+ id
+
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ cheatDatabaseController
+ cheatWindowController
+ displayRotationField
+ displayRotationMenu
+ displayRotationMenuCustomItem
+ emuController
+ firmwareConfigSheet
+ openglMSAAPopUpButton
+ prefWindowController
+ previewView
+ spuSyncMethodMenu
+ toolbar
+ toolbarItemDisplay
+ toolbarItemEmulation
+ toolbarItemGeneral
+ toolbarItemInput
+ toolbarItemSound
+ viewDisplay
+ viewEmulation
+ viewGeneral
+ viewInput
+ viewSound
+ window
+
+
+ YES
+ NSObjectController
+ NSArrayController
+ NSObjectController
+ NSTextField
+ NSPopUpButton
+ NSMenuItem
+ NSObjectController
+ NSWindow
+ NSPopUpButton
+ NSObjectController
+ DisplayPreviewView
+ NSPopUpButton
+ NSToolbar
+ NSToolbarItem
+ NSToolbarItem
+ NSToolbarItem
+ NSToolbarItem
+ NSToolbarItem
+ NSView
+ NSView
+ NSView
+ InputPrefsView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ cheatDatabaseController
+ cheatWindowController
+ displayRotationField
+ displayRotationMenu
+ displayRotationMenuCustomItem
+ emuController
+ firmwareConfigSheet
+ openglMSAAPopUpButton
+ prefWindowController
+ previewView
+ spuSyncMethodMenu
+ toolbar
+ toolbarItemDisplay
+ toolbarItemEmulation
+ toolbarItemGeneral
+ toolbarItemInput
+ toolbarItemSound
+ viewDisplay
+ viewEmulation
+ viewGeneral
+ viewInput
+ viewSound
+ window
+
+
+ YES
+
+ cdsCoreController
+ NSObjectController
+
+
+ cheatDatabaseController
+ NSArrayController
+
+
+ cheatWindowController
+ NSObjectController
+
+
+ displayRotationField
+ NSTextField
+
+
+ displayRotationMenu
+ NSPopUpButton
+
+
+ displayRotationMenuCustomItem
+ NSMenuItem
+
+
+ emuController
+ NSObjectController
+
+
+ firmwareConfigSheet
+ NSWindow
+
+
+ openglMSAAPopUpButton
+ NSPopUpButton
+
+
+ prefWindowController
+ NSObjectController
+
+
+ previewView
+ DisplayPreviewView
+
+
+ spuSyncMethodMenu
+ NSPopUpButton
+
+
+ toolbar
+ NSToolbar
+
+
+ toolbarItemDisplay
+ NSToolbarItem
+
+
+ toolbarItemEmulation
+ NSToolbarItem
+
+
+ toolbarItemGeneral
+ NSToolbarItem
+
+
+ toolbarItemInput
+ NSToolbarItem
+
+
+ toolbarItemSound
+ NSToolbarItem
+
+
+ viewDisplay
+ NSView
+
+
+ viewEmulation
+ NSView
+
+
+ viewGeneral
+ NSView
+
+
+ viewInput
+ InputPrefsView
+
+
+ viewSound
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+
+
+ RomInfoContentView
+ NSView
+
+ IBProjectSource
+ userinterface/RomInfoPanel.h
+
+
+
+ RomInfoPanel
+ NSPanel
+
+ toggleViewState:
+ id
+
+
+ toggleViewState:
+
+ toggleViewState:
+ id
+
+
+
+ YES
+
+ YES
+ armBinariesSectionView
+ fileSystemSectionView
+ generalSectionView
+ miscSectionView
+ titlesSectionView
+
+
+ YES
+ RomInfoPanelSectionView
+ RomInfoPanelSectionView
+ RomInfoPanelSectionView
+ RomInfoPanelSectionView
+ RomInfoPanelSectionView
+
+
+
+ YES
+
+ YES
+ armBinariesSectionView
+ fileSystemSectionView
+ generalSectionView
+ miscSectionView
+ titlesSectionView
+
+
+ YES
+
+ armBinariesSectionView
+ RomInfoPanelSectionView
+
+
+ fileSystemSectionView
+ RomInfoPanelSectionView
+
+
+ generalSectionView
+ RomInfoPanelSectionView
+
+
+ miscSectionView
+ RomInfoPanelSectionView
+
+
+ titlesSectionView
+ RomInfoPanelSectionView
+
+
+
+
+
+
+ RomInfoPanelSectionView
+ NSView
+
+ YES
+
+ YES
+ disclosureButton
+ sectionLabel
+
+
+ YES
+ NSButton
+ NSTextField
+
+
+
+ YES
+
+ YES
+ disclosureButton
+ sectionLabel
+
+
+ YES
+
+ disclosureButton
+ NSButton
+
+
+ sectionLabel
+ NSTextField
+
+
+
+
+
+
+ Slot2WindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ applySettings:
+ chooseGbaCartridgePath:
+ chooseGbaSRamPath:
+ chooseMPCFPath:
+ clearSRamPath:
+ showInputPreferences:
+ testRumble:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ applySettings:
+ chooseGbaCartridgePath:
+ chooseGbaSRamPath:
+ chooseMPCFPath:
+ clearSRamPath:
+ showInputPreferences:
+ testRumble:
+
+
+ YES
+
+ applySettings:
+ id
+
+
+ chooseGbaCartridgePath:
+ id
+
+
+ chooseGbaSRamPath:
+ id
+
+
+ chooseMPCFPath:
+ id
+
+
+ clearSRamPath:
+ id
+
+
+ showInputPreferences:
+ id
+
+
+ testRumble:
+ id
+
+
+
+
+ YES
+
+ YES
+ deviceListController
+ deviceListTable
+ deviceSettingsBox
+ mpcfFileSearchMenu
+ prefWindowDelegate
+ viewAuto
+ viewCompactFlash
+ viewGBACartridge
+ viewGuitarGrip
+ viewMemoryExpansionPack
+ viewNoSelection
+ viewNone
+ viewPaddleController
+ viewPassME
+ viewPiano
+ viewRumblePak
+ viewUnsupported
+ window
+
+
+ YES
+ NSArrayController
+ NSTableView
+ NSBox
+ NSPopUpButton
+ PreferencesWindowDelegate
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ deviceListController
+ deviceListTable
+ deviceSettingsBox
+ mpcfFileSearchMenu
+ prefWindowDelegate
+ viewAuto
+ viewCompactFlash
+ viewGBACartridge
+ viewGuitarGrip
+ viewMemoryExpansionPack
+ viewNoSelection
+ viewNone
+ viewPaddleController
+ viewPassME
+ viewPiano
+ viewRumblePak
+ viewUnsupported
+ window
+
+
+ YES
+
+ deviceListController
+ NSArrayController
+
+
+ deviceListTable
+ NSTableView
+
+
+ deviceSettingsBox
+ NSBox
+
+
+ mpcfFileSearchMenu
+ NSPopUpButton
+
+
+ prefWindowDelegate
+ PreferencesWindowDelegate
+
+
+ viewAuto
+ NSView
+
+
+ viewCompactFlash
+ NSView
+
+
+ viewGBACartridge
+ NSView
+
+
+ viewGuitarGrip
+ NSView
+
+
+ viewMemoryExpansionPack
+ NSView
+
+
+ viewNoSelection
+ NSView
+
+
+ viewNone
+ NSView
+
+
+ viewPaddleController
+ NSView
+
+
+ viewPassME
+ NSView
+
+
+ viewPiano
+ NSView
+
+
+ viewRumblePak
+ NSView
+
+
+ viewUnsupported
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/Slot2WindowDelegate.h
+
+
+
+ TroubleshootingWindowDelegate
+ NSObject
+
+ YES
+
+ YES
+ backForm:
+ continueToFinalForm:
+ copyInfoToPasteboard:
+ copyRomInfoToTextFields:
+ goToWebpage:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ backForm:
+ continueToFinalForm:
+ copyInfoToPasteboard:
+ copyRomInfoToTextFields:
+ goToWebpage:
+
+
+ YES
+
+ backForm:
+ id
+
+
+ continueToFinalForm:
+ id
+
+
+ copyInfoToPasteboard:
+ id
+
+
+ copyRomInfoToTextFields:
+ id
+
+
+ goToWebpage:
+ id
+
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ emuControlController
+ romInfoController
+ troubleshootingWindowController
+ viewBugReport
+ viewFinishedForm
+ viewSupportRequest
+ window
+
+
+ YES
+ NSObjectController
+ NSObjectController
+ NSObjectController
+ NSObjectController
+ NSView
+ NSView
+ NSView
+ NSWindow
+
+
+
+ YES
+
+ YES
+ cdsCoreController
+ emuControlController
+ romInfoController
+ troubleshootingWindowController
+ viewBugReport
+ viewFinishedForm
+ viewSupportRequest
+ window
+
+
+ YES
+
+ cdsCoreController
+ NSObjectController
+
+
+ emuControlController
+ NSObjectController
+
+
+ romInfoController
+ NSObjectController
+
+
+ troubleshootingWindowController
+ NSObjectController
+
+
+ viewBugReport
+ NSView
+
+
+ viewFinishedForm
+ NSView
+
+
+ viewSupportRequest
+ NSView
+
+
+ window
+ NSWindow
+
+
+
+
+ IBProjectSource
+ userinterface/troubleshootingWindowDelegate.h
+
+
+
+ WifiSettingsPanelDelegate
+ NSObject
+
+ YES
+
+ YES
+ generateNewAddresses:
+ writeDefaultsWifiSettings:
+
+
+ YES
+ id
+ id
+
+
+
+ YES
+
+ YES
+ generateNewAddresses:
+ writeDefaultsWifiSettings:
+
+
+ YES
+
+ generateNewAddresses:
+ id
+
+
+ writeDefaultsWifiSettings:
+ id
+
+
+
+
+ YES
+
+ YES
+ bridgeDevicePopUpButton
+ firmwarePanelController
+
+
+ YES
+ NSPopUpButton
+ NSObjectController
+
+
+
+ YES
+
+ YES
+ bridgeDevicePopUpButton
+ firmwarePanelController
+
+
+ YES
+
+ bridgeDevicePopUpButton
+ NSPopUpButton
+
+
+ firmwarePanelController
+ NSObjectController
+
+
+
+
+ IBProjectSource
+ userinterface/WifiSettingsPanel.h
+
+
+
+
+ YES
+
+ NSActionCell
+ NSCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSActionCell.h
+
+
+
+ NSApplication
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSApplication.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSApplicationScripting.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSColorPanel.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSHelpManager.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPageLayout.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSUserInterfaceItemSearching.h
+
+
+
+ NSArrayController
+ NSObjectController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSArrayController.h
+
+
+
+ NSBox
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSBox.h
+
+
+
+ NSBrowser
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSBrowser.h
+
+
+
+ NSButton
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSButton.h
+
+
+
+ NSButtonCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSButtonCell.h
+
+
+
+ NSCell
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSCell.h
+
+
+
+ NSColorWell
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSColorWell.h
+
+
+
+ NSControl
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSControl.h
+
+
+
+ NSController
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSController.h
+
+
+
+ NSDatePicker
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDatePicker.h
+
+
+
+ NSDatePickerCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDatePickerCell.h
+
+
+
+ NSDocumentController
+ NSObject
+
+ YES
+
+ YES
+ clearRecentDocuments:
+ newDocument:
+ openDocument:
+ saveAllDocuments:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ clearRecentDocuments:
+ newDocument:
+ openDocument:
+ saveAllDocuments:
+
+
+ YES
+
+ clearRecentDocuments:
+ id
+
+
+ newDocument:
+ id
+
+
+ openDocument:
+ id
+
+
+ saveAllDocuments:
+ id
+
+
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDocumentController.h
+
+
+
+ NSDrawer
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDrawer.h
+
+
+
+ NSFormatter
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSFormatter.h
+
+
+
+ NSImageCell
+ NSCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSImageCell.h
+
+
+
+ NSImageView
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSImageView.h
+
+
+
+ NSLevelIndicator
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSLevelIndicator.h
+
+
+
+ NSLevelIndicatorCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSLevelIndicatorCell.h
+
+
+
+ NSMatrix
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMatrix.h
+
+
+
+ NSMenu
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenu.h
+
+
+
+ NSMenuItem
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenuItem.h
+
+
+
+ NSMenuItemCell
+ NSButtonCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenuItemCell.h
+
+
+
+ NSMovieView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMovieView.h
+
+
+
+ NSNumberFormatter
+ NSFormatter
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSNumberFormatter.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSAccessibility.h
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDictionaryController.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDragging.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSFontManager.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSFontPanel.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSKeyValueBinding.h
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSNibLoading.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSOutlineView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPasteboard.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSavePanel.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSToolbarItem.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSArchiver.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSClassDescription.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSError.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSFileManager.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyValueCoding.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyValueObserving.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyedArchiver.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSObject.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSObjectScripting.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSPortCoder.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSRunLoop.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptClassDescription.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptKeyValueCoding.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptObjectSpecifiers.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptWhoseTests.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSThread.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURL.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURLConnection.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURLDownload.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ QuartzCore.framework/Headers/CAAnimation.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ QuartzCore.framework/Headers/CALayer.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ QuartzCore.framework/Headers/CIImageProvider.h
+
+
+
+ NSObjectController
+ NSController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSObjectController.h
+
+
+
+ NSOutlineView
+ NSTableView
+
+
+
+ NSPanel
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPanel.h
+
+
+
+ NSPopUpButton
+ NSButton
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPopUpButton.h
+
+
+
+ NSPopUpButtonCell
+ NSMenuItemCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPopUpButtonCell.h
+
+
+
+ NSProgressIndicator
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSProgressIndicator.h
+
+
+
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSInterfaceStyle.h
+
+
+
+ NSResponder
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSResponder.h
+
+
+
+ NSScrollView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSScrollView.h
+
+
+
+ NSScroller
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSScroller.h
+
+
+
+ NSSearchField
+ NSTextField
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSearchField.h
+
+
+
+ NSSearchFieldCell
+ NSTextFieldCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSearchFieldCell.h
+
+
+
+ NSSegmentedCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSegmentedCell.h
+
+
+
+ NSSegmentedControl
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSegmentedControl.h
+
+
+
+ NSSlider
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSlider.h
+
+
+
+ NSSliderCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSliderCell.h
+
+
+
+ NSStepper
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSStepper.h
+
+
+
+ NSStepperCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSStepperCell.h
+
+
+
+ NSTabView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTabView.h
+
+
+
+ NSTabViewItem
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTabViewItem.h
+
+
+
+ NSTableColumn
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableColumn.h
+
+
+
+ NSTableHeaderView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableHeaderView.h
+
+
+
+ NSTableView
+ NSControl
+
+
+
+ NSText
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSText.h
+
+
+
+ NSTextField
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextField.h
+
+
+
+ NSTextFieldCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextFieldCell.h
+
+
+
+ NSTextView
+ NSText
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextView.h
+
+
+
+ NSToolbar
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSToolbar.h
+
+
+
+ NSToolbarItem
+ NSObject
+
+
+
+ NSUserDefaultsController
+ NSController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSUserDefaultsController.h
+
+
+
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSClipView.h
+
+
+
+ NSView
+
+
+
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSRulerView.h
+
+
+
+ NSView
+ NSResponder
+
+
+
+ NSWindow
+
+
+
+ NSWindow
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindow.h
+
+
+
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindowScripting.h
+
+
+
+ NSWindowController
+ NSResponder
+
+ showWindow:
+ id
+
+
+ showWindow:
+
+ showWindow:
+ id
+
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindowController.h
+
+
+
+
+ 0
+ IBCocoaFramework
+
+ com.apple.InterfaceBuilder.CocoaPlugin.macosx
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin.macosx
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3
+
+
+ YES
+ ../../DeSmuME (XCode 3).xcodeproj
+ 3
+
+ YES
+
+ YES
+ ColorSwatch_Blue_16x16
+ ColorSwatch_Brown_16x16
+ ColorSwatch_DarkBlue_16x16
+ ColorSwatch_DarkGreen_16x16
+ ColorSwatch_DarkPurple_16x16
+ ColorSwatch_Gray_16x16
+ ColorSwatch_Green_16x16
+ ColorSwatch_LimeGreen_16x16
+ ColorSwatch_Magenta_16x16
+ ColorSwatch_Orange_16x16
+ ColorSwatch_Pink_16x16
+ ColorSwatch_Red_16x16
+ ColorSwatch_SeaGreen_16x16
+ ColorSwatch_Turquoise_16x16
+ ColorSwatch_Violet_16x16
+ ColorSwatch_Yellow_16x16
+ Icon_ActionReplay_32x32
+ Icon_CodeBreaker_128x128
+ Icon_DeSmuME_32x32
+ Icon_Emulation_420x420
+ Icon_Execute_420x420
+ Icon_FrameAdvance_420x420
+ Icon_FrameJump_420x420
+ Icon_Input_420x420
+ Icon_MicrophoneBlack_256x256
+ Icon_Pause_420x420
+ Icon_Reset_420x420
+ Icon_ShowHUD_420x420
+ Icon_Speaker_420x420
+ Icon_VolumeFull_16x16
+ Image_GuitarGrip
+ Image_MemoryExpansionPak
+ Image_PaddleController
+ Image_PassME
+ Image_Piano
+ NSActionTemplate
+ NSAddTemplate
+ NSApplicationIcon
+ NSMenuCheckmark
+ NSMenuMixedState
+ NSPreferencesGeneral
+ NSRadioButton
+ NSRemoveTemplate
+ NSSwitch
+
+
+ YES
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {16, 16}
+ {32, 32}
+ {128, 128}
+ {32, 32}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {256, 256}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {420, 420}
+ {16, 16}
+ {421, 339}
+ {360, 136}
+ {698, 479}
+ {279, 214}
+ {515, 457}
+ {14, 14}
+ {11, 11}
+ {128, 128}
+ {12, 12}
+ {10, 2}
+ {32, 32}
+ {16, 15}
+ {11, 11}
+ {15, 15}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/desmume/src/frontend/cocoa/userinterface/EmuControllerDelegate.mm b/desmume/src/frontend/cocoa/userinterface/EmuControllerDelegate.mm
index 2b2fc752e..753084412 100644
--- a/desmume/src/frontend/cocoa/userinterface/EmuControllerDelegate.mm
+++ b/desmume/src/frontend/cocoa/userinterface/EmuControllerDelegate.mm
@@ -961,6 +961,11 @@
[[NSUserDefaults standardUserDefaults] setInteger:[[cdsCore cdsGPU] gpuScale] forKey:@"Render3D_ScalingFactor"];
[[NSUserDefaults standardUserDefaults] setInteger:[[cdsCore cdsGPU] gpuColorFormat] forKey:@"Render3D_ColorFormat"];
+ [[NSUserDefaults standardUserDefaults] setBool:[[cdsCore cdsGPU] openGLEmulateShadowPolygon] forKey:@"Render3D_OpenGL_EmulateShadowPolygon"];
+ [[NSUserDefaults standardUserDefaults] setBool:[[cdsCore cdsGPU] openGLEmulateSpecialZeroAlphaBlending] forKey:@"Render3D_OpenGL_EmulateSpecialZeroAlphaBlending"];
+ [[NSUserDefaults standardUserDefaults] setBool:[[cdsCore cdsGPU] openGLEmulateDepthEqualsTestTolerance] forKey:@"Render3D_OpenGL_EmulateDepthEqualTestTolerance"];
+ [[NSUserDefaults standardUserDefaults] setBool:[[cdsCore cdsGPU] openGLEmulateDepthLEqualPolygonFacing] forKey:@"Render3D_OpenGL_EmulateDepthLEqualPolygonFacing"];
+
[[NSUserDefaults standardUserDefaults] synchronize];
}
@@ -2388,6 +2393,12 @@
[[cdsCore cdsGPU] setRender3DFragmentSamplingHack:[[NSUserDefaults standardUserDefaults] boolForKey:@"Render3D_FragmentSamplingHack"]];
[[cdsCore cdsGPU] setGpuScale:(NSUInteger)[[NSUserDefaults standardUserDefaults] integerForKey:@"Render3D_ScalingFactor"]];
[[cdsCore cdsGPU] setGpuColorFormat:(NSUInteger)[[NSUserDefaults standardUserDefaults] integerForKey:@"Render3D_ColorFormat"]];
+
+ [[cdsCore cdsGPU] setOpenGLEmulateShadowPolygon:[[NSUserDefaults standardUserDefaults] boolForKey:@"Render3D_OpenGL_EmulateShadowPolygon"]];
+ [[cdsCore cdsGPU] setOpenGLEmulateSpecialZeroAlphaBlending:[[NSUserDefaults standardUserDefaults] boolForKey:@"Render3D_OpenGL_EmulateSpecialZeroAlphaBlending"]];
+ [[cdsCore cdsGPU] setOpenGLEmulateDepthEqualsTestTolerance:[[NSUserDefaults standardUserDefaults] boolForKey:@"Render3D_OpenGL_EmulateDepthEqualTestTolerance"]];
+ [[cdsCore cdsGPU] setOpenGLEmulateDepthLEqualPolygonFacing:[[NSUserDefaults standardUserDefaults] boolForKey:@"Render3D_OpenGL_EmulateDepthLEqualPolygonFacing"]];
+
[[[cdsCore cdsGPU] sharedData] fetchSynchronousAtIndex:0];
// Set the stylus options per user preferences.