From 83578add74d246601d0c58c24b2ec439bfd612d1 Mon Sep 17 00:00:00 2001 From: rogerman Date: Fri, 20 Feb 2015 22:18:08 +0000 Subject: [PATCH] Cocoa Port: - Completely revamp the ROM Info panel to have a more modern and mainstream look and feel. - The ROM Info panel can now be resized and scrolled through. - Each individual info section in the ROM Info panel can now be expanded or collapsed. - Fix bugs where the ROM capacity and ROM used capacity info weren't being calculated correctly. - Do a bunch of random UI text clipping fixes when running on OS X Yosemite. --- .../project.pbxproj | 20 +- .../project.pbxproj | 20 +- desmume/src/cocoa/DefaultUserPrefs.plist | 2 + desmume/src/cocoa/cocoa_rom.h | 2 + desmume/src/cocoa/cocoa_rom.mm | 83 +- .../English.lproj/MainMenu.strings | Bin 328196 -> 330262 bytes .../translations/English.lproj/MainMenu.xib | 121757 ++++++++------- .../src/cocoa/userinterface/RomInfoPanel.h | 72 + .../src/cocoa/userinterface/RomInfoPanel.mm | 229 + desmume/src/cocoa/userinterface/appDelegate.h | 16 +- .../src/cocoa/userinterface/appDelegate.mm | 33 +- 11 files changed, 61872 insertions(+), 60362 deletions(-) create mode 100644 desmume/src/cocoa/userinterface/RomInfoPanel.h create mode 100644 desmume/src/cocoa/userinterface/RomInfoPanel.mm diff --git a/desmume/src/cocoa/DeSmuME (Latest).xcodeproj/project.pbxproj b/desmume/src/cocoa/DeSmuME (Latest).xcodeproj/project.pbxproj index d741c5178..385f651ae 100644 --- a/desmume/src/cocoa/DeSmuME (Latest).xcodeproj/project.pbxproj +++ b/desmume/src/cocoa/DeSmuME (Latest).xcodeproj/project.pbxproj @@ -741,6 +741,9 @@ ABAD3E7913AF1D6D00502E1E /* sse_optimized.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABAD3E6D13AF1D6D00502E1E /* sse_optimized.cpp */; }; ABAD3E7A13AF1D6D00502E1E /* TDStretch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABAD3E6E13AF1D6D00502E1E /* TDStretch.cpp */; }; ABAD3E7B13AF1D6D00502E1E /* WavFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABAD3E6F13AF1D6D00502E1E /* WavFile.cpp */; }; + ABAF0A411A96E67200B95B75 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABAF0A401A96E67200B95B75 /* RomInfoPanel.mm */; }; + ABAF0A421A96E67200B95B75 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABAF0A401A96E67200B95B75 /* RomInfoPanel.mm */; }; + ABAF0A431A96E67200B95B75 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABAF0A401A96E67200B95B75 /* RomInfoPanel.mm */; }; ABB24F6D1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABB24F6B1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp */; }; ABB24F6E1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABB24F6B1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp */; }; ABB24F6F1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABB24F6B1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp */; }; @@ -1220,6 +1223,8 @@ ABAD3E6D13AF1D6D00502E1E /* sse_optimized.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sse_optimized.cpp; sourceTree = ""; }; ABAD3E6E13AF1D6D00502E1E /* TDStretch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TDStretch.cpp; sourceTree = ""; }; ABAD3E6F13AF1D6D00502E1E /* WavFile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WavFile.cpp; sourceTree = ""; }; + ABAF0A3F1A96E67200B95B75 /* RomInfoPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RomInfoPanel.h; sourceTree = ""; }; + ABAF0A401A96E67200B95B75 /* RomInfoPanel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RomInfoPanel.mm; sourceTree = ""; }; ABB24F6B1A81EE92006C1108 /* OGLDisplayOutput_3_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OGLDisplayOutput_3_2.cpp; sourceTree = ""; }; ABB24F6C1A81EE92006C1108 /* OGLDisplayOutput_3_2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OGLDisplayOutput_3_2.h; sourceTree = ""; }; ABB3C63B1501BB8300E0C22E /* DeSmuME_Prefix_OpenEmu.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeSmuME_Prefix_OpenEmu.pch; sourceTree = ""; }; @@ -1688,6 +1693,7 @@ AB3ACB6E14C2361100D7D192 /* inputPrefsView.h */, AB01005C170D07AF00D70FBE /* InputProfileController.h */, AB3ACB7014C2361100D7D192 /* preferencesWindowDelegate.h */, + ABAF0A3F1A96E67200B95B75 /* RomInfoPanel.h */, AB564902186E6EBC002740F4 /* Slot2WindowDelegate.h */, ABF2B9F81690412A000FF7C0 /* troubleshootingWindowDelegate.h */, AB3ACB6714C2361100D7D192 /* appDelegate.mm */, @@ -1699,6 +1705,7 @@ AB3ACB6F14C2361100D7D192 /* inputPrefsView.mm */, AB01005D170D07B000D70FBE /* InputProfileController.mm */, AB3ACB7114C2361100D7D192 /* preferencesWindowDelegate.mm */, + ABAF0A401A96E67200B95B75 /* RomInfoPanel.mm */, AB564903186E6EBC002740F4 /* Slot2WindowDelegate.mm */, ABF2B9FA16904133000FF7C0 /* troubleshootingWindowDelegate.mm */, ); @@ -2765,6 +2772,7 @@ ABD1FF531345ACBF00AF11D1 /* ConvertUTF.c in Sources */, ABAD3E7113AF1D6D00502E1E /* AAFilter.cpp in Sources */, ABD1FED21345AC8400AF11D1 /* arm_instructions.cpp in Sources */, + ABAF0A421A96E67200B95B75 /* RomInfoPanel.mm in Sources */, ABD1FED31345AC8400AF11D1 /* armcpu.cpp in Sources */, ABD1FED41345AC8400AF11D1 /* bios.cpp in Sources */, ABD1FF5B1345ACBF00AF11D1 /* cache.cpp in Sources */, @@ -2974,6 +2982,7 @@ AB796D0B15CDCBA200C59155 /* FIRFilter.cpp in Sources */, AB796D0C15CDCBA200C59155 /* firmware.cpp in Sources */, AB796D0D15CDCBA200C59155 /* fs-linux.cpp in Sources */, + ABAF0A411A96E67200B95B75 /* RomInfoPanel.mm in Sources */, AB796D0E15CDCBA200C59155 /* gfx3d.cpp in Sources */, AB796D0F15CDCBA200C59155 /* GPU.cpp in Sources */, AB9038AF17C5ED2200F410BD /* slot1_retail_auto.cpp in Sources */, @@ -3132,6 +3141,7 @@ AB8F3C821A53AC2600A80BF6 /* decrypt.cpp in Sources */, AB8F3C831A53AC2600A80BF6 /* directory.cpp in Sources */, AB8F3C841A53AC2600A80BF6 /* Disassembler.cpp in Sources */, + ABAF0A431A96E67200B95B75 /* RomInfoPanel.mm in Sources */, AB8F3C851A53AC2600A80BF6 /* disc.cpp in Sources */, AB8F3C861A53AC2600A80BF6 /* dlditool.cpp in Sources */, AB8F3C871A53AC2600A80BF6 /* driver.cpp in Sources */, @@ -3513,7 +3523,6 @@ "DEBUG=1", GDB_STUB, ); - MACOSX_DEPLOYMENT_TARGET = 10.5; PRODUCT_NAME = "DeSmuME (Debug, dev+)"; }; name = Debug; @@ -3526,7 +3535,6 @@ GDB_STUB, ); LLVM_LTO = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; PRODUCT_NAME = "DeSmuME (dev+)"; }; name = Release; @@ -3535,6 +3543,7 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LIBRARY = "libc++"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "\"$(SRCROOT)/openemu\"", @@ -3551,6 +3560,7 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LIBRARY = "libc++"; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "\"$(SRCROOT)/openemu\"", @@ -3580,7 +3590,6 @@ INFOPLIST_FILE = Info.plist; LLVM_LTO = YES; LLVM_VECTORIZE_LOOPS = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; ONLY_ACTIVE_ARCH = NO; PRODUCT_NAME = DeSmuME; SKIP_INSTALL = NO; @@ -3603,7 +3612,6 @@ GCC_UNROLL_LOOPS = YES; IBC_FLATTEN_NIBS = YES; LLVM_LTO = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; VALIDATE_PRODUCT = YES; }; name = Release; @@ -3646,7 +3654,7 @@ IBC_FLATTEN_NIBS = NO; INFOPLIST_FILE = "Info (Debug).plist"; LD_NO_PIE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.6; + MACOSX_DEPLOYMENT_TARGET = 10.5; ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "DeSmuME (Debug)"; SDKROOT = macosx; @@ -3692,7 +3700,7 @@ INFOPLIST_FILE = Info.plist; LD_NO_PIE = YES; LLVM_VECTORIZE_LOOPS = YES; - MACOSX_DEPLOYMENT_TARGET = 10.6; + MACOSX_DEPLOYMENT_TARGET = 10.5; PRODUCT_NAME = DeSmuME; SDKROOT = macosx; STRIP_INSTALLED_PRODUCT = NO; diff --git a/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj b/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj index c27b22dcb..d5c1f52a9 100644 --- a/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj +++ b/desmume/src/cocoa/DeSmuME (XCode 3).xcodeproj/project.pbxproj @@ -1131,6 +1131,11 @@ ABC3AF3514B7F06900D5B13D /* Icon_VolumeOneThird_16x16.png in Resources */ = {isa = PBXBuildFile; fileRef = ABC3AF2D14B7F06900D5B13D /* Icon_VolumeOneThird_16x16.png */; }; ABC3AF3614B7F06900D5B13D /* Icon_VolumeTwoThird_16x16.png in Resources */ = {isa = PBXBuildFile; fileRef = ABC3AF2E14B7F06900D5B13D /* Icon_VolumeTwoThird_16x16.png */; }; ABC3AFCF14B8D16700D5B13D /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = AB0A0D1914AACA9600E83E91 /* libz.dylib */; }; + ABC3DEBD1A96EA96009EC345 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */; }; + ABC3DEBE1A96EA96009EC345 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */; }; + ABC3DEBF1A96EA96009EC345 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */; }; + ABC3DEC01A96EA96009EC345 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */; }; + ABC3DEC11A96EA96009EC345 /* RomInfoPanel.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */; }; ABD0A53A1501AA5A0074A094 /* coreaudiosound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD0A5341501AA5A0074A094 /* coreaudiosound.cpp */; }; ABD0A53B1501AA5A0074A094 /* ringbuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD0A5351501AA5A0074A094 /* ringbuffer.cpp */; }; ABD597BC187CD95A00069403 /* Image_GuitarGrip.png in Resources */ = {isa = PBXBuildFile; fileRef = ABD597BB187CD95A00069403 /* Image_GuitarGrip.png */; }; @@ -1428,6 +1433,8 @@ ABC3AF2C14B7F06900D5B13D /* Icon_VolumeMute_16x16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon_VolumeMute_16x16.png; path = images/Icon_VolumeMute_16x16.png; sourceTree = ""; }; ABC3AF2D14B7F06900D5B13D /* Icon_VolumeOneThird_16x16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon_VolumeOneThird_16x16.png; path = images/Icon_VolumeOneThird_16x16.png; sourceTree = ""; }; ABC3AF2E14B7F06900D5B13D /* Icon_VolumeTwoThird_16x16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon_VolumeTwoThird_16x16.png; path = images/Icon_VolumeTwoThird_16x16.png; sourceTree = ""; }; + ABC3DEBB1A96EA96009EC345 /* RomInfoPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RomInfoPanel.h; sourceTree = ""; }; + ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RomInfoPanel.mm; sourceTree = ""; }; ABC570D0134431CE00E7B0B1 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = System/Library/Frameworks/AudioUnit.framework; sourceTree = SDKROOT; }; ABC570D4134431DA00E7B0B1 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; }; ABC719E1138CB25E002827A9 /* DefaultKeyMappings.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = DefaultKeyMappings.plist; sourceTree = ""; }; @@ -1961,6 +1968,7 @@ AB3ACB6E14C2361100D7D192 /* inputPrefsView.h */, AB213D43170CB141006DDB0F /* InputProfileController.h */, AB3ACB7014C2361100D7D192 /* preferencesWindowDelegate.h */, + ABC3DEBB1A96EA96009EC345 /* RomInfoPanel.h */, ABAE2F7918682B6C00C92F4F /* Slot2WindowDelegate.h */, ABA0356E169127BB00817C69 /* troubleshootingWindowDelegate.h */, AB3ACB6714C2361100D7D192 /* appDelegate.mm */, @@ -1972,6 +1980,7 @@ AB3ACB6F14C2361100D7D192 /* inputPrefsView.mm */, AB213D44170CB141006DDB0F /* InputProfileController.mm */, AB3ACB7114C2361100D7D192 /* preferencesWindowDelegate.mm */, + ABC3DEBC1A96EA96009EC345 /* RomInfoPanel.mm */, ABAE2F7A18682B6C00C92F4F /* Slot2WindowDelegate.mm */, ABA0356F169127C000817C69 /* troubleshootingWindowDelegate.mm */, ); @@ -3380,6 +3389,7 @@ ABAE2F8818682B8F00C92F4F /* cocoa_slot2.mm in Sources */, ABECB50D18A460710052D52A /* xbrz.cpp in Sources */, ABECB51818A460910052D52A /* OGLDisplayOutput.cpp in Sources */, + ABC3DEC11A96EA96009EC345 /* RomInfoPanel.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3524,6 +3534,7 @@ ABAE2F8418682B8F00C92F4F /* cocoa_slot2.mm in Sources */, ABECB50A18A460710052D52A /* xbrz.cpp in Sources */, ABECB51518A460910052D52A /* OGLDisplayOutput.cpp in Sources */, + ABC3DEBD1A96EA96009EC345 /* RomInfoPanel.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3698,6 +3709,7 @@ AB8FFCB4186F8E5400C10085 /* slot2_mpcf.cpp in Sources */, ABECB50918A460710052D52A /* xbrz.cpp in Sources */, ABECB51418A460910052D52A /* OGLDisplayOutput.cpp in Sources */, + ABC3DEBE1A96EA96009EC345 /* RomInfoPanel.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3872,6 +3884,7 @@ ABAE2F8718682B8F00C92F4F /* cocoa_slot2.mm in Sources */, ABECB50C18A460710052D52A /* xbrz.cpp in Sources */, ABECB51718A460910052D52A /* OGLDisplayOutput.cpp in Sources */, + ABC3DEC01A96EA96009EC345 /* RomInfoPanel.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4016,6 +4029,7 @@ ABAE2F8618682B8F00C92F4F /* cocoa_slot2.mm in Sources */, ABECB50B18A460710052D52A /* xbrz.cpp in Sources */, ABECB51618A460910052D52A /* OGLDisplayOutput.cpp in Sources */, + ABC3DEBF1A96EA96009EC345 /* RomInfoPanel.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4081,7 +4095,6 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = ppc; - "GCC_MODEL_TUNING[sdk=macosx10.5][arch=ppc]" = G5; GCC_PREPROCESSOR_DEFINITIONS = ( NDEBUG, PUBLIC_RELEASE, @@ -4269,10 +4282,7 @@ GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_INLINES_ARE_PRIVATE_EXTERN = YES; "GCC_MODEL_PPC64[sdk=macosx10.5][arch=ppc64]" = YES; - GCC_MODEL_TUNING = ""; - "GCC_MODEL_TUNING[sdk=macosx10.4][arch=ppc]" = G4; - "GCC_MODEL_TUNING[sdk=macosx10.5][arch=ppc64]" = G5; - "GCC_MODEL_TUNING[sdk=macosx10.5][arch=ppc]" = G4; + GCC_MODEL_TUNING = G5; GCC_OPTIMIZATION_LEVEL = 3; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = DeSmuME_Prefix.pch; diff --git a/desmume/src/cocoa/DefaultUserPrefs.plist b/desmume/src/cocoa/DefaultUserPrefs.plist index 439fb3890..7be2794e4 100644 --- a/desmume/src/cocoa/DefaultUserPrefs.plist +++ b/desmume/src/cocoa/DefaultUserPrefs.plist @@ -714,6 +714,8 @@ Render3D_Threads 0 + RomInfoPanel_SectionViewState + Slot2_GBA_CartridgePath Slot2_GBA_SRAMPath diff --git a/desmume/src/cocoa/cocoa_rom.h b/desmume/src/cocoa/cocoa_rom.h index 4865fab34..a5da30c50 100644 --- a/desmume/src/cocoa/cocoa_rom.h +++ b/desmume/src/cocoa/cocoa_rom.h @@ -56,12 +56,14 @@ - (NSString *) serial; - (NSString *) developerName; - (NSString *) developerNameAndCode; +- (NSString *) unitCodeStringUsingID:(NSInteger)unitCodeID; - (NSImage *) icon; - (void) handleAdvansceneDatabaseInfo; + (void) changeRomSaveType:(NSInteger)saveTypeID; + (NSInteger) saveTypeByString:(NSString *)saveTypeString; + (NSMutableDictionary *) romNotLoadedBindings; ++ (NSString *) byteSizeStringWithLargerUnit:(NSUInteger)byteSize; @end diff --git a/desmume/src/cocoa/cocoa_rom.mm b/desmume/src/cocoa/cocoa_rom.mm index ff40d74d4..4271b3e3c 100644 --- a/desmume/src/cocoa/cocoa_rom.mm +++ b/desmume/src/cocoa/cocoa_rom.mm @@ -175,6 +175,7 @@ static NSMutableDictionary *saveTypeValues = nil; [self.header setValue:[self developerName] forKey:@"gameDeveloper"]; [self.header setValue:[self developerNameAndCode] forKey:@"gameDeveloperWithCode"]; [self.header setValue:[NSNumber numberWithInteger:ndsRomHeader->makerCode] forKey:@"makerCode"]; + [self.header setValue:[NSNumber numberWithInteger:ndsRomHeader->unitCode] forKey:@"unitCode"]; [self.header setValue:[NSNumber numberWithInteger:ndsRomHeader->cardSize] forKey:@"romSize"]; [self.header setValue:[NSNumber numberWithInteger:ndsRomHeader->ARM9src] forKey:@"arm9BinaryOffset"]; [self.header setValue:[NSNumber numberWithInteger:ndsRomHeader->ARM9exe] forKey:@"arm9BinaryEntryAddress"]; @@ -196,7 +197,8 @@ static NSMutableDictionary *saveTypeValues = nil; [self.bindings setValue:[self.header objectForKey:@"gameDeveloper"] forKey:@"gameDeveloper"]; [self.bindings setValue:[self.header objectForKey:@"gameDeveloperWithCode"] forKey:@"gameDeveloperWithCode"]; [self.bindings setValue:[NSString stringWithFormat:@"0x%04X", [[self.header objectForKey:@"makerCode"] intValue]] forKey:@"makerCode"]; - [self.bindings setValue:[NSString stringWithFormat:@"%i", [[self.header objectForKey:@"romSize"] intValue]] forKey:@"romSize"]; + [self.bindings setValue:[self unitCodeStringUsingID:[[self.header objectForKey:@"unitCode"] intValue]] forKey:@"unitCode"]; + [self.bindings setValue:[CocoaDSRom byteSizeStringWithLargerUnit:(128*1024) << [[self.header objectForKey:@"romSize"] intValue]] forKey:@"romSize"]; [self.bindings setValue:[NSString stringWithFormat:@"0x%08X", [[self.header objectForKey:@"arm9BinaryOffset"] intValue]] forKey:@"arm9BinaryOffset"]; [self.bindings setValue:[NSString stringWithFormat:@"0x%08X", [[self.header objectForKey:@"arm9BinaryEntryAddress"] intValue]] forKey:@"arm9BinaryEntryAddress"]; [self.bindings setValue:[NSString stringWithFormat:@"0x%08X", [[self.header objectForKey:@"arm9BinaryStartAddress"] intValue]] forKey:@"arm9BinaryStartAddress"]; @@ -211,7 +213,8 @@ static NSMutableDictionary *saveTypeValues = nil; [self.bindings setValue:[NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, [[self.header objectForKey:@"fatSize"] intValue]] forKey:@"fatSize"]; [self.bindings setValue:[NSString stringWithFormat:@"0x%08X", [[self.header objectForKey:@"fatOffset"] intValue]] forKey:@"fatOffset"]; [self.bindings setValue:[NSString stringWithFormat:@"0x%08X", [[self.header objectForKey:@"iconOffset"] intValue]] forKey:@"iconOffset"]; - [self.bindings setValue:[NSString stringWithFormat:@"%i", [[self.header objectForKey:@"usedRomSize"] intValue]] forKey:@"usedRomSize"]; + [self.bindings setValue:[CocoaDSRom byteSizeStringWithLargerUnit:[[self.header objectForKey:@"usedRomSize"] intValue]] forKey:@"usedRomSize"]; + [self.bindings setValue:[CocoaDSRom byteSizeStringWithLargerUnit:(((128*1024) << [[self.header objectForKey:@"romSize"] intValue]) - [[self.header objectForKey:@"usedRomSize"] intValue])] forKey:@"unusedCapacity"]; } // Get ROM image @@ -344,6 +347,33 @@ static NSMutableDictionary *saveTypeValues = nil; return [NSString stringWithFormat:@"%s [0x%04X]", getDeveloperNameByID(ndsRomHeader->makerCode).c_str(), ndsRomHeader->makerCode]; } +- (NSString *) unitCodeStringUsingID:(NSInteger)unitCodeID +{ + switch (unitCodeID) + { + case 0: + return @"NDS"; + break; + + case 1: + return @"DSi (Invalid ID)"; + break; + + case 2: + return @"NDS + DSi"; + break; + + case 3: + return @"DSi"; + break; + + default: + break; + } + + return @"Unknown"; +} + - (NSImage *) icon { NSImage *newImage = nil; @@ -547,26 +577,53 @@ static NSMutableDictionary *saveTypeValues = nil; NSSTRING_STATUS_NO_ROM_LOADED, @"gameCode", NSSTRING_STATUS_NO_ROM_LOADED, @"gameDeveloper", NSSTRING_STATUS_NO_ROM_LOADED, @"gameDeveloperWithCode", + NSSTRING_STATUS_NO_ROM_LOADED, @"unitCode", NSSTRING_STATUS_NO_ROM_LOADED, @"makerCode", - [NSString stringWithFormat:NSSTRING_STATUS_NO_ROM_LOADED, 0], @"romSize", - [NSString stringWithFormat:@"0x%08X", 0], @"arm9BinaryOffset", - [NSString stringWithFormat:@"0x%08X", 0], @"arm9BinaryEntryAddress", - [NSString stringWithFormat:@"0x%08X", 0], @"arm9BinaryStartAddress", + [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"romSize", + @"----------", @"arm9BinaryOffset", + @"----------", @"arm9BinaryEntryAddress", + @"----------", @"arm9BinaryStartAddress", [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"arm9BinarySize", - [NSString stringWithFormat:@"0x%08X", 0], @"arm7BinaryOffset", - [NSString stringWithFormat:@"0x%08X", 0], @"arm7BinaryEntryAddress", - [NSString stringWithFormat:@"0x%08X", 0], @"arm7BinaryStartAddress", + @"----------", @"arm7BinaryOffset", + @"----------", @"arm7BinaryEntryAddress", + @"----------", @"arm7BinaryStartAddress", [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"arm7BinarySize", - [NSString stringWithFormat:@"0x%08X", 0], @"fntOffset", + @"----------", @"fntOffset", [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"fntTableSize", - [NSString stringWithFormat:@"0x%08X", 0], @"fatOffset", + @"----------", @"fatOffset", [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"fatSize", - [NSString stringWithFormat:@"0x%08X", 0], @"iconOffset", - [NSString stringWithFormat:NSSTRING_STATUS_NO_ROM_LOADED, 0], @"usedRomSize", + @"----------", @"iconOffset", + [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"usedRomSize", + [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, 0], @"unusedCapacity", iconImage, @"iconImage", nil]; } ++ (NSString *) byteSizeStringWithLargerUnit:(NSUInteger)byteSize +{ + float kilobyteSize = byteSize / 1024.0; + float megabyteSize = kilobyteSize / 1024.0; + float gigabyteSize = megabyteSize / 1024.0; + + NSString *byteString = [NSString stringWithFormat:NSSTRING_STATUS_SIZE_BYTES, byteSize]; + NSString *unitString = byteString; + + if (gigabyteSize > 1.0f) + { + unitString = [NSString stringWithFormat:@"%@ (%1.1f GB)", byteString, gigabyteSize]; + } + else if (megabyteSize > 1.0f) + { + unitString = [NSString stringWithFormat:@"%@ (%1.1f MB)", byteString, megabyteSize]; + } + else if (kilobyteSize > 1.0f) + { + unitString = [NSString stringWithFormat:@"%@ (%1.1f KB)", byteString, kilobyteSize]; + } + + return unitString; +} + @end /******************************************************************************************** diff --git a/desmume/src/cocoa/translations/English.lproj/MainMenu.strings b/desmume/src/cocoa/translations/English.lproj/MainMenu.strings index 47db8710c95fa7028e3a1d721cd778832da82262..cc3a14e6b7204bd17ff7188a76fb1ca3ab052b3c 100644 GIT binary patch delta 1521 zcmbVMUu;uV7(eIS18&W_7P~HC8}sgub;8oEe|C4Prh#tjN|{1ehHGiaiVWOju3H9C zgQR9nMDfAyBmFQTDg+Js)UgnVA+Z?s!6?~YH1fhEJQ-%#lMxMg?!9(FZGA8|C-U-c~r%H3*$e91beAU{%7Hnx@)j+?*sSk|ZyXF)~A5g`3LIKP;bn z_u`0)S@GyGCc}+xH~#!6tHzoE7GFrKwH3Bb@(LOL`-9oHcnf^CwRgk6Kv+E)!*m<+IjVz8g+y;b&YXVCJ+6~LaK&n(UnA+9?!Jg8=`eCtW zb4k{`uL&A@gC!;QgB%*3>-(ZC@pfN1;(vv^8vH-3Q~hOF3v!54eAmNFcQo~Lh=@R)ZLLXa-P|Xe}Ua+t#D3@L>QFnHf)(~5Gdmzus zrYW(r9PQrD(lm_R5v_B5uyi$JFdnUi_n&dXm(gBm+A!?Z)HT2S{~VfN{@37R3JWLiv8k{rhGvg`@4#s9Rk;zy1jG>!^(KlXUAkAL%AO zT)NBc)CXs)Hlj7i6X14jmIMOx@7c6BMiyy3yyJQf^Fyqa`mo~!wF^MSYy+(~D92S3 z#NEyCX?2~BywONCt_rLECRlbk;F#NAq~EMG=nxq-*!b;l+yreNE1qtU>VznjxG*`z zZB#|tCt^2xhKuCv2($m?vHB}J0*m5L^qR+O$ni)IsT!1wL)0RywTGk9kajoxk%6(^Ety&E#ofB7Xuu9=VkO delta 1117 zcmaJ=T}V@582-*V-`1Q#N10BW%ABS#Y#z5|t88t#O;>Yn^LJ4&L(8CSMOR&fkW?34 zh;Qx%DKR372vLL*3K5BJ4C*2%h(x>WBD|1-3DS4YnK1n6;^Un6eV+F@&-Z-aNj)?S z4H>2$)uuLtDxCjLZIG_*#l$#ogDHR0+wFM?gFL64Cu8+B`}=;@&} z?=Z2D{ix%7v6n=MmxPI*vHfhOodnqm5kIatXay`er2kOL z?KIBvDth|Bsl$04XGU?5Qdns4VMNCTU~0}_43j1%7i99y+43-5UjY**q}_0owT%H1 zW3IxaafjgxZmD2L6nmWXx?%?sZVK&!h{@N?R_94cwlxfrmx9})c)S4{!5Xl87gWBC zSWhX4N~>zjDk{_LD*2qUh&os3e^uaT7F(1Ev%-UD(*aoZ+jd5ky%ozjdzEP9{I?9_ z+A1fG1Sot6>^JVhQ)F=2!_fj+VSB{UrZ%H`y4$d^eNl8c5JZE%uTpWK-E?4tb{8+*M6RE8T$A8cgoLHxH zCLJ5hn4as@!n=-uden2Bq0JX9eCx_|e|CrE?^WJO#P22I99ukF!ka{#{(klkBoZ|Q diff --git a/desmume/src/cocoa/translations/English.lproj/MainMenu.xib b/desmume/src/cocoa/translations/English.lproj/MainMenu.xib index a3486dab8..d82e023b3 100644 --- a/desmume/src/cocoa/translations/English.lproj/MainMenu.xib +++ b/desmume/src/cocoa/translations/English.lproj/MainMenu.xib @@ -1,4381 +1,4332 @@ - - 1050 - 14C109 - 851 - 1344.72 - 757.30 - - com.apple.InterfaceBuilder.CocoaPlugin - 851 - - - YES - - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - YES - - NSApplication - - - FirstResponder - - - NSApplication - - - MainMenu - - YES - - - DeSmuME - - 1048576 - 2147483647 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - submenuAction: - - - DeSmuME - - YES - - - About DeSmuME - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Preferences… - , - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Services - - 1048576 - 2147483647 - - - submenuAction: - - - Services - - YES - - _NSServicesMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Hide DeSmuME - h - 1048576 - 2147483647 - - - - - - Hide Others - h - 1572864 - 2147483647 - - - - - - Show All - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Quit DeSmuME - q - 1048576 - 2147483647 - - - - - _NSAppleMenu - - - - - File - - 1048576 - 2147483647 - - - submenuAction: - - - File - - YES - - - New Display Window - n - 1048576 - 2147483647 - - - - - - Load ROM… - o - 1048576 - 2147483647 - - - - - - Load Recent ROM - - 1048576 - 2147483647 - - - submenuAction: - - - Load Recent ROM - - YES - - - Clear Menu - - 1048576 - 2147483647 - - - - - _NSRecentDocumentsMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Close Window - w - 1048576 - 2147483647 - - - - - - Unload ROM - w - 1572864 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - ROM Info - i - 1048576 - 2147483647 - - - - - - Reveal ROM in Finder - - 2147483647 - - - - - - Reveal Game Data Folder in Finder - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Open State File... - O - 1048576 - 2147483647 - - - - - - Close State File - W - 1048576 - 2147483647 - - - - - - Save State File - s - 1048576 - 2147483647 - - - - - - Save State File As… - S - 1179648 - 2147483647 - - - - - - Revert State File to Saved - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Load State Slot - - 2147483647 - - - submenuAction: - - - Load State Slot - - YES - - - - - - Save State Slot - - 2147483647 - - - submenuAction: - - - Save State Slot - - YES - - - - - - YES - YES - - - 2147483647 - - - - - - Open Replay... - - 2147483647 - - - - - - Start Replay Recording... - - 2147483647 - - - - - - Stop Replay - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Import ROM Save File... - - 2147483647 - - - - - - Export ROM Save File... - - 2147483647 - - - - - - - - - Edit - - 2147483647 - - - submenuAction: - - - Edit - - YES - - - Undo - z - 1048576 - 2147483647 - - - - - - Redo - Z - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Cut - x - 1048576 - 2147483647 - - - - - - Copy - c - 1048576 - 2147483647 - - - - - - Paste - v - 1048576 - 2147483647 - - - - - - Delete - - 2147483647 - - - - - - Select All - a - 1048576 - 2147483647 - - - - - - - - - Emulation - - 2147483647 - - - submenuAction: - - - Emulation - - YES - - - Show Execution Control... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Execute - - 2147483647 - - - - - - Pause - - 2147483647 - - - - - - Frame Advance - - 2147483647 - - - - - - Frame Jump - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Reset - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Disable Auto Frame Skip - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show Cheat Manager... - - 2147483647 - - - - - - Disable Cheats - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show SLOT-1 Manager... - - 2147483647 - - - - - - Show SLOT-2 Manager... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show Emulation Settings... - - 2147483647 - - - - - - Show 3D Rendering Settings... - - 2147483647 - - - - - - Show Sound Settings... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - ROM Save Type - - 2147483647 - - - submenuAction: - - - ROM Save Type - - YES - - - Automatic - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - -1 - - - - EEPROM 4Kb - - 2147483647 - - - 1 - - - - EEPROM 64Kb - - 2147483647 - - - 2 - - - - EEPROM 512Kb - - 2147483647 - - - 3 - - - - FRAM 256Kb - - 2147483647 - - - 4 - - - - FLASH 2Mb - - 2147483647 - - - 5 - - - - FLASH 4Mb - - 2147483647 - - - 6 - - - - FLASH 8Mb - - 2147483647 - - - 7 - - - - FLASH 16Mb - - 2147483647 - - - 8 - - - - FLASH 32Mb - - 2147483647 - - - 9 - - - - FLASH 64Mb - - 2147483647 - - - 10 - - - - FLASH 128Mb - - 2147483647 - - - 11 - - - - FLASH 256Mb - - 2147483647 - - - 12 - - - - FLASH 512Mb - - 2147483647 - - - 13 - - - - - - - - - - View - - 1048576 - 2147483647 - - - submenuAction: - - - View - - YES - - - Display Mode - - 2147483647 - - - submenuAction: - - - Display Mode - - YES - - - Main - - 2147483647 - - - - - - Touch - - 2147483647 - - - 1 - - - - Dual Screen - - 2147483647 - - - 2 - - - - - - - Display Size - - 2147483647 - - - submenuAction: - - - Display Size - - YES - - - 1x - - 2147483647 - - - 100 - - - - 2x - - 2147483647 - - - 200 - - - - 3x - - 2147483647 - - - 300 - - - - 4x - - 2147483647 - - - 400 - - - - 5x - - 2147483647 - - - 500 - - - - - - - Display Rotation - - 2147483647 - - - submenuAction: - - - Display Rotation - - YES - - - Rotate Left - - 2147483647 - - - -90 - - - - Rotate Right - - 2147483647 - - - 90 - - - - YES - YES - - - 2147483647 - - - - - - - - 2147483647 - - - - - - 90º - - 2147483647 - - - 90 - - - - 180º - - 2147483647 - - - 180 - - - - 270º - - 2147483647 - - - 270 - - - - YES - YES - - - 2147483647 - - - - - - Custom... - - 2147483647 - - - -1 - - - - - - - Display Orientation - - 2147483647 - - - submenuAction: - - - Display Orientation - - YES - - - Vertical - - 2147483647 - - - - - - Horizontal - - 2147483647 - - - 1 - - - - - - - Display Order - - 2147483647 - - - submenuAction: - - - Display Order - - YES - - - Main Screen First - - 2147483647 - - - - - - Touch Screen First - - 2147483647 - - - 1 - - - - - - - Display Separation - - 2147483647 - - - submenuAction: - - - Display Separation - - YES - - - 0% - - 2147483647 - - - - - - 50% - - 2147483647 - - - 50 - - - - 100% - - 2147483647 - - - 100 - - - - 150% - - 2147483647 - - - 150 - - - - 200% - - 2147483647 - - - 200 - - - - YES - YES - - - 2147483647 - - - - - - Custom... - - 2147483647 - - - -1 - - - - - - - YES - YES - - - 2147483647 - - - - - - Video Source Filters - - 2147483647 - - - submenuAction: - - - Video Source Filters - - YES - - - Deposterize - - 2147483647 - - - - - - - - - Video Output Filter - - 2147483647 - - - submenuAction: - - - Video Output Filter - - YES - - - Nearest Neighbor - - 2147483647 - - - - - - Bilinear - - 2147483647 - - - 1 - - - - Bicubic (B-Spline) - - 2147483647 - - - 2 - - - - Bicubic (Mitchell-Netravali) - - 2147483647 - - - 3 - - - - Lanczos2 - - 2147483647 - - - 4 - - - - Lanczos3 - - 2147483647 - - - 5 - - - - - - - Video Pixel Scaler - - 2147483647 - - - submenuAction: - - - Video Pixel Scaler - - YES - - - None - - 2147483647 - - - - - - Nearest 2x - - 2147483647 - - - 11 - - - - Scanline - - 2147483647 - - - 9 - - - - EPX - - 2147483647 - - - 14 - - - - EPX+ - - 2147483647 - - - 15 - - - - Super Eagle - - 2147483647 - - - 8 - - - - 2xSaI - - 2147483647 - - - 6 - - - - Super 2xSaI - - 2147483647 - - - 7 - - - - LQ2x - - 2147483647 - - - 1 - - - - LQ2xS - - 2147483647 - - - 2 - - - - HQ2x - - 2147483647 - - - 3 - - - - HQ2xS - - 2147483647 - - - 4 - - - - HQ4x - - 2147483647 - - - 5 - - - - HQ4xS - - 2147483647 - - - 18 - - - - 2xBRZ - - 2147483647 - - - 19 - - - - 3xBRZ - - 2147483647 - - - 20 - - - - 4xBRZ - - 2147483647 - - - 21 - - - - 5xBRZ - - 2147483647 - - - 22 - - - - - - - Show Video Settings… - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Enter Full Screen - f - 1310720 - 2147483647 - - - - - - Keep Minimum Display Size at 1x - - 2147483647 - - - - - - Show Status Bar - / - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show Toolbar - t - 1572864 - 2147483647 - - - - - - Customize Toolbar… - - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Toggle All Displays - t - 1048576 - 2147483647 - - - - - - - - - Tools - - 2147483647 - - - submenuAction: - - - Tools - - YES - - - Save Screenshot As... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show GPU Layers... - - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Show GDB Stub Control... - - 2147483647 - - - - - - - - - Window - - 1048576 - 2147483647 - - - submenuAction: - - - Window - - YES - - - Minimize - m - 1048576 - 2147483647 - - - - - - Zoom - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Bring All to Front - - 1048576 - 2147483647 - - - - - _NSWindowsMenu - - - - - Help - - 2147483647 - - - submenuAction: - - - Help - - YES - - - DeSmuME Help - ? - 1048576 - 2147483647 - - - - - - YES - YES - - - 2147483647 - - - - - - Go to Website... - - 2147483647 - - - - - - Go to Forums... - - 2147483647 - - - - - - Submit a Support Request... - - 2147483647 - - - - - - Submit a Bug Report... - - 2147483647 - - - - - _NSHelpMenu - - - - _NSMainMenu - - - AppDelegate - - - EmuControllerDelegate - - - InputManager - - - 15 - 2 - {{53, 296}, {550, 450}} - 1148716032 - About DeSmuME - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - - 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 - - - {{20, 302}, {128, 128}} - - YES - - 134217728 - 33554432 - - NSImage - NSApplicationIcon - - 0 - 1 - 0 - NO - - NO - YES - - - - 18 - {{13, 10}, {524, 290}} - - - YES - - 1 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {505, 244} - - - - - - - - - - - YES - - - 38 - - - - 505 - 1 - - - 100673541 - 0 - - - 3 - MQA - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - 6 - System - controlTextColor - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - - 1 - - 6 - {505, 10000000} - - - - {505, 244} - - - - - - {4, 5} - - 79691776 - - YES - - YES - - - - file://localhost/Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 2 - YES - - - - 256 - {{489, 0}, {16, 244}} - - NO - _doScroller: - - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - - Read Me - - 6 - System - controlColor - - - - - - 2 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 100673541 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {490, 10000000} - - - - {490, 244} - - - - - - 2 - YES - - - - 256 - {{490, 0}, {15, 244}} - - NO - _doScroller: - - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - License - - - - - Item 2 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 100673541 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {490, 10000000} - - - - {490, 244} - - - - - - 2 - YES - - - - 256 - {{490, 0}, {15, 244}} - - NO - _doScroller: - - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - Authors - - - - - Item 3 - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - {490, 244} - - - - - - - - - - - YES - - - 38 - - - - 490 - 1 - - - 100673541 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {490, 10000000} - - - - {490, 244} - - - - - - 2 - YES - - - - 256 - {{490, 0}, {15, 244}} - - NO - _doScroller: - - - _doScroller: - 0.96240601503759393 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{-3, -3}, {505, 244}} - - - 133136 - - - - 0.25 - 4 - 1 - - - {{10, 33}, {504, 244}} - - Change Log - - - - - - - .HelveticaNeueDeskInterface-Regular - 13 - 1040 - - 0 - YES - YES - - YES - - - - - - 270 - {{153, 374}, {380, 56}} - - YES - - 69206017 - 4198400 - - - App Description - - - - - NO - 1 - - - - 270 - {{156, 302}, {374, 64}} - - YES - - 73400321 - 4329472 - - - .HelveticaNeueDeskInterface-Regular - 11 - 3088 - - Build Info - - YES - - - - NO - 1 - - - {550, 450} - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 7 - 2 - {{94, 633}, {400, 100}} - 1685588992 - DeSmuME Preferences - NSWindow - - - 7F8262D5-9D3C-423C-B7C5-79385DDE5A70 - - - YES - YES - NO - NO - 1 - 1 - - YES - - YES - 8DD2F943-8717-4EC3-A3C5-30068405F029 - A9C4AA28-77F8-4AD3-96D8-A67306997B4C - AC584A31-E187-4BC3-9981-D18A2C8553F7 - C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A - E30B98EC-D044-488C-A4E0-5BCE53366462 - NSToolbarFlexibleSpaceItem - NSToolbarSpaceItem - - - YES - - - 8DD2F943-8717-4EC3-A3C5-30068405F029 - - Input - Input - - - - NSImage - Icon_Input_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - A9C4AA28-77F8-4AD3-96D8-A67306997B4C - - General - General - - - - NSImage - NSPreferencesGeneral - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - AC584A31-E187-4BC3-9981-D18A2C8553F7 - - Emulation - Emulation - - - - NSImage - Icon_Emulation_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A - - Sound - Sound - - - - NSImage - Icon_Speaker_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - - E30B98EC-D044-488C-A4E0-5BCE53366462 - - Display - Display - - - - NSImage - Icon_ShowHUD_420x420 - - - - {0, 0} - {0, 0} - YES - YES - -1 - YES - 0 - - - NSToolbarFlexibleSpaceItem - - Flexible Space - - - - - - {1, 5} - {20000, 32} - YES - YES - -1 - YES - 0 - - YES - YES - - - 1048576 - 2147483647 - - - - - - NSToolbarSpaceItem - - Space - - - - - - {32, 5} - {32, 10000} - YES - YES - -1 - YES - 0 - - YES - YES - - - 1048576 - 2147483647 - - - - - - - - YES - - - - - - - - - - YES - - - - - - - - - YES - - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - {400, 100} - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - - YES - - - - 268 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{175, 50}, {199, 21}} - - - YES - - 613417024 - 272634880 - - - File Name - - - - - NO - 1 - - - - 268 - {{376, 43}, {96, 32}} - - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 53}, {155, 17}} - - - YES - - 68157504 - 71304192 - ADVANsCEne Database: - - - - - - NO - 1 - - - - 268 - {{15, 14}, {454, 28}} - - - YES - - 69206017 - 138543104 - WW91IGNhbiBkb3dubG9hZCB0aGUgbGF0ZXN0IEFEVkFOc0NFbmUgRGF0YWJhc2UgZnJvbToKaHR0cDov + + 1050 + 13F34 + 851 + 1265.21 + 698.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 851 + + + YES + + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NSApplication + + + FirstResponder + + + NSApplication + + + MainMenu + + YES + + + DeSmuME + + 1048576 + 2147483647 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + submenuAction: + + + DeSmuME + + YES + + + About DeSmuME + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Preferences… + , + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Services + + 1048576 + 2147483647 + + + submenuAction: + + + Services + + YES + + _NSServicesMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Hide DeSmuME + h + 1048576 + 2147483647 + + + + + + Hide Others + h + 1572864 + 2147483647 + + + + + + Show All + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Quit DeSmuME + q + 1048576 + 2147483647 + + + + + _NSAppleMenu + + + + + File + + 1048576 + 2147483647 + + + submenuAction: + + + File + + YES + + + New Display Window + n + 1048576 + 2147483647 + + + + + + Load ROM… + o + 1048576 + 2147483647 + + + + + + Load Recent ROM + + 1048576 + 2147483647 + + + submenuAction: + + + Load Recent ROM + + YES + + + Clear Menu + + 1048576 + 2147483647 + + + + + _NSRecentDocumentsMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Close Window + w + 1048576 + 2147483647 + + + + + + Unload ROM + w + 1572864 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + ROM Info + i + 1048576 + 2147483647 + + + + + + Reveal ROM in Finder + + 2147483647 + + + + + + Reveal Game Data Folder in Finder + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Open State File... + O + 1048576 + 2147483647 + + + + + + Close State File + W + 1048576 + 2147483647 + + + + + + Save State File + s + 1048576 + 2147483647 + + + + + + Save State File As… + S + 1179648 + 2147483647 + + + + + + Revert State File to Saved + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Load State Slot + + 2147483647 + + + submenuAction: + + + Load State Slot + + YES + + + + + + Save State Slot + + 2147483647 + + + submenuAction: + + + Save State Slot + + YES + + + + + + YES + YES + + + 2147483647 + + + + + + Open Replay... + + 2147483647 + + + + + + Start Replay Recording... + + 2147483647 + + + + + + Stop Replay + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Import ROM Save File... + + 2147483647 + + + + + + Export ROM Save File... + + 2147483647 + + + + + + + + + Edit + + 2147483647 + + + submenuAction: + + + Edit + + YES + + + Undo + z + 1048576 + 2147483647 + + + + + + Redo + Z + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Cut + x + 1048576 + 2147483647 + + + + + + Copy + c + 1048576 + 2147483647 + + + + + + Paste + v + 1048576 + 2147483647 + + + + + + Delete + + 2147483647 + + + + + + Select All + a + 1048576 + 2147483647 + + + + + + + + + Emulation + + 2147483647 + + + submenuAction: + + + Emulation + + YES + + + Show Execution Control... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Execute + + 2147483647 + + + + + + Pause + + 2147483647 + + + + + + Frame Advance + + 2147483647 + + + + + + Frame Jump + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Reset + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Disable Auto Frame Skip + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show Cheat Manager... + + 2147483647 + + + + + + Disable Cheats + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show SLOT-1 Manager... + + 2147483647 + + + + + + Show SLOT-2 Manager... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show Emulation Settings... + + 2147483647 + + + + + + Show 3D Rendering Settings... + + 2147483647 + + + + + + Show Sound Settings... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + ROM Save Type + + 2147483647 + + + submenuAction: + + + ROM Save Type + + YES + + + Automatic + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + -1 + + + + EEPROM 4Kb + + 2147483647 + + + 1 + + + + EEPROM 64Kb + + 2147483647 + + + 2 + + + + EEPROM 512Kb + + 2147483647 + + + 3 + + + + FRAM 256Kb + + 2147483647 + + + 4 + + + + FLASH 2Mb + + 2147483647 + + + 5 + + + + FLASH 4Mb + + 2147483647 + + + 6 + + + + FLASH 8Mb + + 2147483647 + + + 7 + + + + FLASH 16Mb + + 2147483647 + + + 8 + + + + FLASH 32Mb + + 2147483647 + + + 9 + + + + FLASH 64Mb + + 2147483647 + + + 10 + + + + FLASH 128Mb + + 2147483647 + + + 11 + + + + FLASH 256Mb + + 2147483647 + + + 12 + + + + FLASH 512Mb + + 2147483647 + + + 13 + + + + + + + + + + View + + 1048576 + 2147483647 + + + submenuAction: + + + View + + YES + + + Display Mode + + 2147483647 + + + submenuAction: + + + Display Mode + + YES + + + Main + + 2147483647 + + + + + + Touch + + 2147483647 + + + 1 + + + + Dual Screen + + 2147483647 + + + 2 + + + + + + + Display Size + + 2147483647 + + + submenuAction: + + + Display Size + + YES + + + 1x + + 2147483647 + + + 100 + + + + 2x + + 2147483647 + + + 200 + + + + 3x + + 2147483647 + + + 300 + + + + 4x + + 2147483647 + + + 400 + + + + 5x + + 2147483647 + + + 500 + + + + + + + Display Rotation + + 2147483647 + + + submenuAction: + + + Display Rotation + + YES + + + Rotate Left + + 2147483647 + + + -90 + + + + Rotate Right + + 2147483647 + + + 90 + + + + YES + YES + + + 2147483647 + + + + + + + + 2147483647 + + + + + + 90º + + 2147483647 + + + 90 + + + + 180º + + 2147483647 + + + 180 + + + + 270º + + 2147483647 + + + 270 + + + + YES + YES + + + 2147483647 + + + + + + Custom... + + 2147483647 + + + -1 + + + + + + + Display Orientation + + 2147483647 + + + submenuAction: + + + Display Orientation + + YES + + + Vertical + + 2147483647 + + + + + + Horizontal + + 2147483647 + + + 1 + + + + + + + Display Order + + 2147483647 + + + submenuAction: + + + Display Order + + YES + + + Main Screen First + + 2147483647 + + + + + + Touch Screen First + + 2147483647 + + + 1 + + + + + + + Display Separation + + 2147483647 + + + submenuAction: + + + Display Separation + + YES + + + 0% + + 2147483647 + + + + + + 50% + + 2147483647 + + + 50 + + + + 100% + + 2147483647 + + + 100 + + + + 150% + + 2147483647 + + + 150 + + + + 200% + + 2147483647 + + + 200 + + + + YES + YES + + + 2147483647 + + + + + + Custom... + + 2147483647 + + + -1 + + + + + + + YES + YES + + + 2147483647 + + + + + + Video Source Filters + + 2147483647 + + + submenuAction: + + + Video Source Filters + + YES + + + Deposterize + + 2147483647 + + + + + + + + + Video Output Filter + + 2147483647 + + + submenuAction: + + + Video Output Filter + + YES + + + Nearest Neighbor + + 2147483647 + + + + + + Bilinear + + 2147483647 + + + 1 + + + + Bicubic (B-Spline) + + 2147483647 + + + 2 + + + + Bicubic (Mitchell-Netravali) + + 2147483647 + + + 3 + + + + Lanczos2 + + 2147483647 + + + 4 + + + + Lanczos3 + + 2147483647 + + + 5 + + + + + + + Video Pixel Scaler + + 2147483647 + + + submenuAction: + + + Video Pixel Scaler + + YES + + + None + + 2147483647 + + + + + + Nearest 2x + + 2147483647 + + + 11 + + + + Scanline + + 2147483647 + + + 9 + + + + EPX + + 2147483647 + + + 14 + + + + EPX+ + + 2147483647 + + + 15 + + + + Super Eagle + + 2147483647 + + + 8 + + + + 2xSaI + + 2147483647 + + + 6 + + + + Super 2xSaI + + 2147483647 + + + 7 + + + + LQ2x + + 2147483647 + + + 1 + + + + LQ2xS + + 2147483647 + + + 2 + + + + HQ2x + + 2147483647 + + + 3 + + + + HQ2xS + + 2147483647 + + + 4 + + + + HQ4x + + 2147483647 + + + 5 + + + + HQ4xS + + 2147483647 + + + 18 + + + + 2xBRZ + + 2147483647 + + + 19 + + + + 3xBRZ + + 2147483647 + + + 20 + + + + 4xBRZ + + 2147483647 + + + 21 + + + + 5xBRZ + + 2147483647 + + + 22 + + + + + + + Show Video Settings… + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Enter Full Screen + f + 1310720 + 2147483647 + + + + + + Keep Minimum Display Size at 1x + + 2147483647 + + + + + + Show Status Bar + / + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show Toolbar + t + 1572864 + 2147483647 + + + + + + Customize Toolbar… + + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Toggle All Displays + t + 1048576 + 2147483647 + + + + + + + + + Tools + + 2147483647 + + + submenuAction: + + + Tools + + YES + + + Save Screenshot As... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show GPU Layers... + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Show GDB Stub Control... + + 2147483647 + + + + + + + + + Window + + 1048576 + 2147483647 + + + submenuAction: + + + Window + + YES + + + Minimize + m + 1048576 + 2147483647 + + + + + + Zoom + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Bring All to Front + + 1048576 + 2147483647 + + + + + _NSWindowsMenu + + + + + Help + + 2147483647 + + + submenuAction: + + + Help + + YES + + + DeSmuME Help + ? + 1048576 + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Go to Website... + + 2147483647 + + + + + + Go to Forums... + + 2147483647 + + + + + + Submit a Support Request... + + 2147483647 + + + + + + Submit a Bug Report... + + 2147483647 + + + + + _NSHelpMenu + + + + _NSMainMenu + + + AppDelegate + + + EmuControllerDelegate + + + InputManager + + + 15 + 2 + {{53, 296}, {550, 450}} + 1148716032 + About DeSmuME + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + + 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 + + + {{20, 302}, {128, 128}} + + YES + + 134217728 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 1 + 0 + NO + + NO + YES + + + + 18 + {{13, 10}, {524, 290}} + + + YES + + 1 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {505, 244} + + + + + + + + + + + YES + + + 38 + + + + 505 + 1 + + + 100673541 + 0 + + + 3 + MQA + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + 6 + System + selectedTextBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + 6 + System + controlTextColor + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + + 1 + + 6 + {505, 10000000} + + + + {505, 244} + + + + + + {4, 5} + + 79691776 + + YES + + YES + + + + file://localhost/Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff + + + + + 3 + MCAwAA + + + + 2 + + + + 256 + {{489, 0}, {16, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + + Read Me + + 6 + System + controlColor + + + + + + 2 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {490, 10000000} + + + + {490, 244} + + + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + License + + + + + Item 2 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {490, 10000000} + + + + {490, 244} + + + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + Authors + + + + + Item 3 + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {490, 244} + + + + + + + + + + + YES + + + 38 + + + + 490 + 1 + + + 100673541 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {490, 10000000} + + + + {490, 244} + + + + + + 2 + + + + 256 + {{490, 0}, {15, 244}} + + NO + + _doScroller: + 0.96240601503759393 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{-3, -3}, {505, 244}} + + + 133136 + + + + 0.25 + 4 + 1 + + + {{10, 33}, {504, 244}} + + Change Log + + + + + + + LucidaGrande + 13 + 1040 + + 0 + YES + YES + + YES + + + + + + 270 + {{153, 374}, {380, 56}} + + YES + + 69206017 + 4198400 + + + App Description + + + + + NO + 1 + + + + 270 + {{156, 302}, {374, 64}} + + YES + + 73400321 + 4329472 + + + LucidaGrande + 11 + 3088 + + Build Info + + YES + + + + NO + 1 + + + {550, 450} + + {{0, 0}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 7 + 2 + {{94, 633}, {400, 100}} + 1685588992 + DeSmuME Preferences + NSWindow + + + 7F8262D5-9D3C-423C-B7C5-79385DDE5A70 + + + YES + YES + NO + NO + 1 + 1 + + YES + + YES + 8DD2F943-8717-4EC3-A3C5-30068405F029 + A9C4AA28-77F8-4AD3-96D8-A67306997B4C + AC584A31-E187-4BC3-9981-D18A2C8553F7 + C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A + E30B98EC-D044-488C-A4E0-5BCE53366462 + NSToolbarFlexibleSpaceItem + NSToolbarSpaceItem + + + YES + + + 8DD2F943-8717-4EC3-A3C5-30068405F029 + + Input + Input + + + + NSImage + Icon_Input_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + A9C4AA28-77F8-4AD3-96D8-A67306997B4C + + General + General + + + + NSImage + NSPreferencesGeneral + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + AC584A31-E187-4BC3-9981-D18A2C8553F7 + + Emulation + Emulation + + + + NSImage + Icon_Emulation_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + C9B4F2D8-9F6E-4ED5-84C7-E13EB3484A3A + + Sound + Sound + + + + NSImage + Icon_Speaker_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + + E30B98EC-D044-488C-A4E0-5BCE53366462 + + Display + Display + + + + NSImage + Icon_ShowHUD_420x420 + + + + {0, 0} + {0, 0} + YES + YES + -1 + YES + 0 + + + NSToolbarFlexibleSpaceItem + + Flexible Space + + + + + + {1, 5} + {20000, 32} + YES + YES + -1 + YES + 0 + + YES + YES + + + 1048576 + 2147483647 + + + + + + NSToolbarSpaceItem + + Space + + + + + + {32, 5} + {32, 32} + YES + YES + -1 + YES + 0 + + YES + YES + + + 1048576 + 2147483647 + + + + + + + + YES + + + + + + + + + + YES + + + + + + + + + YES + + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + {400, 100} + + {{0, 0}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + + YES + + + + 268 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{175, 50}, {199, 21}} + + YES + + 613417024 + 272634880 + + + File Name + + + + + NO + 1 + + + + 268 + {{376, 43}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 53}, {155, 17}} + + YES + + 68157504 + 71304192 + ADVANsCEne Database: + + + + + + NO + 1 + + + + 268 + {{15, 14}, {454, 28}} + + YES + + 69206017 + 138543104 + WW91IGNhbiBkb3dubG9hZCB0aGUgbGF0ZXN0IEFEVkFOc0NFbmUgRGF0YWJhc2UgZnJvbToKaHR0cDov L3d3dy5hZHZhbnNjZW5lLmNvbS9vZmZsaW5lL2RhdGFzL0FEVkFOc0NFbmVfUlRvb2xEUy56aXA - - - - - - NO - 1 - - - {{1, 1}, {484, 81}} - - - - - {{17, 16}, {486, 97}} - - - {0, 0} - - 67108864 - 0 - ADVANsCEne Database - - - 6 - System - textBackgroundColor - - - - 6 - System - labelColor - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{148, 14}, {226, 21}} - - - YES - - 613417024 - 272634880 - - - File Name - - - - - NO - 1 - - - - 268 - {{376, 7}, {96, 32}} - - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 17}, {128, 17}} - - - YES - - 68157504 - 71304192 - R4 Cheat Database: - - - - - - NO - 1 - - - {{1, 1}, {484, 45}} - - - - - {{17, 117}, {486, 61}} - - - {0, 0} - - 67108864 - 0 - Cheat Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{68, 12}, {362, 18}} - - - YES - - 67108864 - 0 - Do not show Game Data Migration Assistant on startup - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 268 - {{114, 33}, {270, 32}} - - - YES - - 67108864 - 134217728 - Show Game Data Migration Assistant - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {484, 75}} - - - - - {{17, 182}, {486, 91}} - - - {0, 0} - - 67108864 - 0 - User File Migration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 40}, {366, 18}} - - - YES - - -2080374784 - 0 - Automatically execute emulation when loading a ROM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 84}, {247, 18}} - - - YES - - -2080374784 - 0 - Restore display windows on startup - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{273, 10}, {196, 26}} - - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - None - - 2147483647 - 1 - - - _popUpItemAction: - 10000 - - - YES - - OtherViews - - YES - - - - Last Loaded ROM - - 2147483647 - - - _popUpItemAction: - - - - - YES - No ROM chosen. - - 2147483647 - - - _popUpItemAction: - 1 - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - -1 - - - - - Choose ROM... - - 2147483647 - - NSImage - NSActionTemplate - - - - _popUpItemAction: - 10001 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{15, 16}, {256, 17}} - - - _NS:4068 - YES - - 68157504 - 272630784 - Automatically load this ROM on startup: - - _NS:4068 - - - - - NO - 1 - - - - 268 - {{16, 62}, {216, 18}} - - - _NS:682 - YES - - -2080374784 - 0 - Only load ROM data as needed - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {484, 109}} - - - - - {{17, 277}, {486, 125}} - - - {0, 0} - - 67108864 - 0 - General Behavior - - - - - - 1 - 0 - 2 - NO - - - {520, 422} - - - NSView - - - - 268 - - YES - - - 268 - {{97, 463}, {96, 17}} - - YES - - 68157504 - 71304192 - Saved Profiles: - - - - - - NO - 1 - - - - 268 - {{195, 457}, {265, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - New... - - 2147483647 - 1 - - - - _popUpItemAction: - -1 - - - YES - - InputConfigurationMenu - - YES - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{462, 457}, {116, 26}} - - YES - - -2076180416 - 134219776 - - - -2038284288 - 129 - - LucidaGrande - 13 - 16 - - - - 400 - 75 - - - YES - Actions - - 1048576 - 2147483647 - 1 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - View - - 2147483647 - - - _popUpItemAction: - - - - - Apply - - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - Rename - - 2147483647 - - - _popUpItemAction: - - - - - YES - Save - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - Delete - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - YES - - - YES - 1 - YES - YES - 2 - - NO - - - - 274 - - YES - - - 2304 - - YES - - - 256 - {640, 394} - - YES - NO - YES - - - 256 - {640, 17} - - - - - - -2147483392 - {{584, 0}, {16, 17}} - - - - YES - - InputCommandTagColumn - 155 - 16 - 1000 - - 75497536 - 2048 - Set Command - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 68157504 - 132096 - Command - - - -2034483200 - 100 - - - - 200 - 25 - - 3 - YES - - - - InputDeviceColumn - 175 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Device - - - 6 - System - headerColor - - - - - - 70254657 - 136192 - Text Cell - - - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - InputSettingsSummaryColumn - 136 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Settings Summary - - - - - - 70254657 - 136192 - Text Cell - - - - - - 3 - YES - - - - InputSettingsColumn - 69 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - - - - - - - 605028416 - 134349824 - Settings - - - -2035007488 - 36 - - - 200 - 25 - - - - - RemoveInputColumn - 67 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - - - - - - - 68157504 - 134349824 - Remove - - - -2035007488 - 36 - - - 200 - 25 - - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 1402994688 - - - InputPreferences - 0 - 15 - 0 - NO - 0 - 1 - NO - YES - - - {{1, 17}, {640, 394}} - - - - - 4 - YES - - - - 2304 - - YES - - - {{1, 0}, {640, 17}} - - - - YES - - - - -2147483392 - {{584, 17}, {15, 102}} - - NO - _doScroller: - - - _doScroller: - 0.96411483253588515 - - - - -2147483392 - {{1, 420}, {624, 15}} - - NO - _doScroller: - - 1 - - _doScroller: - 0.99843505477308292 - - - - {{-1, 37}, {642, 412}} - - - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - {{197, 12}, {247, 17}} - - YES - - 605028416 - 171971584 - Click this area to map mouse input. - - .HelveticaNeueDeskInterface-Bold - 13 - 2064 - - - - - - NO - 1 - - - {640, 495} - InputPrefsView - - - - 268 - - YES - - - 12 - {{13, 10}, {463, 412}} - - - YES - - 1 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{72, 44}, {84, 17}} - - YES - - 68157504 - 71304192 - Display Size: - - - - - - NO - 1 - - - - 268 - {{44, 16}, {112, 17}} - - YES - - 68157504 - 71304192 - Display Rotation: - - - - - - NO - 1 - - - - 268 - {{158, 38}, {126, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - 1x - - 2147483647 - 1 - - - _popUpItemAction: - 100 - - - YES - - OtherViews - - YES - - - - 2x - - 2147483647 - - - _popUpItemAction: - 200 - - - - - 3x - - 2147483647 - - - _popUpItemAction: - 300 - - - - - 4x - - 2147483647 - - - _popUpItemAction: - 400 - - - - - 5x - - 2147483647 - - - _popUpItemAction: - 500 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - - YES - - {{289, 14}, {72, 22}} - - YES - - -1804599231 - 71304192 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumIntegerDigits - minimum - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - #0.##º - +∞ - - - - #0.##º - #0.##º - - - - - - - - NaN - - YES - - - YES - - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - - YES - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{63, 72}, {93, 17}} - - YES - - 68157504 - 71304192 - Display Mode: - - - - - - NO - 1 - - - - 268 - {{158, 66}, {126, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Dual Screen - - 2147483647 - 1 - - - _popUpItemAction: - 2 - - - YES - - OtherViews - - YES - - - Main - - 2147483647 - - - _popUpItemAction: - - - - - Touch - - 2147483647 - - - _popUpItemAction: - 1 - - - - - YES - - - 2 - 1 - YES - YES - 2 - - NO - - - - 268 - {{158, 11}, {126, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - 90º - - 1048576 - 2147483647 - - - _popUpItemAction: - 90 - - - - - 180º - - 1048576 - 2147483647 - - - _popUpItemAction: - 180 - - - - - 270º - - 2147483647 - - - _popUpItemAction: - 270 - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - Custom - - 2147483647 - - - _popUpItemAction: - -1 - - - - - - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {429, 100}} - - - - {{6, 217}, {431, 116}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {100, 38}} - - YES - NO - 2 - 1 - - YES - - -2080374784 - 0 - Vertical - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Horizontal - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + NO + 1 + + + {{1, 1}, {484, 81}} + + + + {{17, 16}, {486, 97}} + + {0, 0} + + 67108864 + 0 + ADVANsCEne Database + + + 6 + System + textBackgroundColor + + + + 6 + System + labelColor + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{148, 14}, {226, 21}} + + YES + + 613417024 + 272634880 + + + File Name + + + + + NO + 1 + + + + 268 + {{376, 7}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 17}, {128, 17}} + + YES + + 68157504 + 71304192 + R4 Cheat Database: + + + + + + NO + 1 + + + {{1, 1}, {484, 45}} + + + + {{17, 117}, {486, 61}} + + {0, 0} + + 67108864 + 0 + Cheat Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{68, 12}, {362, 18}} + + YES + + 67108864 + 0 + Do not show Game Data Migration Assistant on startup + + + 1211912448 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + NO + + + + 268 + {{114, 33}, {270, 32}} + + YES + + 67108864 + 134217728 + Show Game Data Migration Assistant + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {484, 75}} + + + + {{17, 182}, {486, 91}} + + {0, 0} + + 67108864 + 0 + User File Migration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 40}, {366, 18}} + + YES + + -2080374784 + 0 + Automatically execute emulation when loading a ROM + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 84}, {247, 18}} + + YES + + -2080374784 + 0 + Restore display windows on startup + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{273, 10}, {196, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + None + + 2147483647 + 1 + + + _popUpItemAction: + 10000 + + + YES + + OtherViews + + YES + + + + Last Loaded ROM + + 2147483647 + + + _popUpItemAction: + + + + + YES + No ROM chosen. + + 2147483647 + + + _popUpItemAction: + 1 + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + -1 + + + + + Choose ROM... + + 2147483647 + + NSImage + NSActionTemplate + + + + _popUpItemAction: + 10001 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{15, 16}, {256, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + Automatically load this ROM on startup: + + _NS:4068 + + + + + NO + 1 + + + + 268 + {{16, 62}, {216, 18}} + + _NS:682 + YES + + -2080374784 + 0 + Only load ROM data as needed + + _NS:682 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {484, 109}} + + + + {{17, 277}, {486, 125}} + + {0, 0} + + 67108864 + 0 + General Behavior + + + + + + 1 + 0 + 2 + NO + + + {520, 422} + NSView + + + + 268 + + YES + + + 268 + {{96, 463}, {97, 17}} + + YES + + 68157504 + 71304192 + Saved Profiles: + + + + + + NO + 1 + + + + 268 + {{195, 457}, {265, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + New... + + 2147483647 + 1 + + + + _popUpItemAction: + -1 + + + YES + + InputConfigurationMenu + + YES + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{462, 457}, {116, 26}} + + YES + + -2076180416 + 134219776 + + + -2038284288 + 129 + + LucidaGrande + 13 + 16 + + + + 400 + 75 + + + YES + Actions + + 1048576 + 2147483647 + 1 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + View + + 2147483647 + + + _popUpItemAction: + + + + + Apply + + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + Rename + + 2147483647 + + + _popUpItemAction: + + + + + YES + Save + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + Delete + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + YES + + + YES + 1 + YES + YES + 2 + + NO + + + + 274 + + YES + + + 2304 + + YES + + + 256 + {640, 394} + + YES + NO + YES + + + 256 + {640, 17} + + + + + + -2147483392 + {{584, 0}, {16, 17}} + + + + YES + + InputCommandTagColumn + 155 + 16 + 1000 + + 75497536 + 2048 + Set Command + + + 3 + MC4zMzMzMzI5ODU2AA + + + 6 + System + headerTextColor + + + + + 68157504 + 132096 + Command + + + -2034483200 + 100 + + + + 200 + 25 + + 3 + YES + + + + InputDeviceColumn + 175 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Device + + + 6 + System + headerColor + + + + + + 70254657 + 136192 + Text Cell + + + + 6 + System + controlBackgroundColor + + + + + 3 + YES + + + + InputSettingsSummaryColumn + 136 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Settings Summary + + + + + + 70254657 + 136192 + Text Cell + + + + + + 3 + YES + + + + InputSettingsColumn + 69 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + + + + + + + 605028416 + 134349824 + Settings + + + -2035007488 + 36 + + + 200 + 25 + + + + + RemoveInputColumn + 67 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + + + + + + + 68157504 + 134349824 + Remove + + + -2035007488 + 36 + + + 200 + 25 + + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + 1402994688 + + + InputPreferences + 0 + 15 + 0 + NO + 0 + 1 + NO + YES + + + {{1, 17}, {640, 394}} + + + + + 4 + + + + 2304 + + YES + + + {{1, 0}, {640, 17}} + + + + + + + -2147483392 + {{584, 17}, {15, 102}} + + NO + + _doScroller: + 0.96411483253588515 + + + + -2147483392 + {{1, 420}, {624, 15}} + + NO + 1 + + _doScroller: + 0.99843505477308292 + + + + {{-1, 37}, {642, 412}} + + + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + {{197, 12}, {247, 17}} + + YES + + 605028416 + 171971584 + Click this area to map mouse input. + + LucidaGrande-Bold + 13 + 2064 + + + + + + NO + 1 + + + {640, 495} + InputPrefsView + + + + 268 + + YES + + + 12 + {{13, 10}, {463, 412}} + + + YES + + 1 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{72, 44}, {84, 17}} + + YES + + 68157504 + 71304192 + Display Size: + + + + + + NO + 1 + + + + 268 + {{44, 16}, {112, 17}} + + YES + + 68157504 + 71304192 + Display Rotation: + + + + + + NO + 1 + + + + 268 + {{158, 38}, {126, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + 1x + + 2147483647 + 1 + + + _popUpItemAction: + 100 + + + YES + + OtherViews + + YES + + + + 2x + + 2147483647 + + + _popUpItemAction: + 200 + + + + + 3x + + 2147483647 + + + _popUpItemAction: + 300 + + + + + 4x + + 2147483647 + + + _popUpItemAction: + 400 + + + + + 5x + + 2147483647 + + + _popUpItemAction: + 500 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + + YES + + {{289, 14}, {72, 22}} + + YES + + -1804599231 + 71304192 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumIntegerDigits + minimum + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + #0.##º + +∞ + + + + #0.##º + #0.##º + + + + + + + + NaN + + YES + + + YES + + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + + YES + + + 6 + System + textColor + + + + NO + 1 + + + + 268 + {{63, 72}, {93, 17}} + + YES + + 68157504 + 71304192 + Display Mode: + + + + + + NO + 1 + + + + 268 + {{158, 66}, {126, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Dual Screen + + 2147483647 + 1 + + + _popUpItemAction: + 2 + + + YES + + OtherViews + + YES + + + Main + + 2147483647 + + + _popUpItemAction: + + + + + Touch + + 2147483647 + + + _popUpItemAction: + 1 + + + + + YES + + + 2 + 1 + YES + YES + 2 + + NO + + + + 268 + {{158, 11}, {126, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + 90º + + 1048576 + 2147483647 + + + _popUpItemAction: + 90 + + + + + 180º + + 1048576 + 2147483647 + + + _popUpItemAction: + 180 + + + + + 270º + + 2147483647 + + + _popUpItemAction: + 270 + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + Custom + + 2147483647 + + + _popUpItemAction: + -1 + + + + + + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {429, 100}} + + + + {{6, 217}, {431, 116}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {100, 38}} + + YES + NO + 2 + 1 + + YES + + -2080374784 + 0 + Vertical + + + 1211912448 + 0 + + NSRadioButton + + + + 200 + 25 + + + 67108864 + 0 + Horizontal + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4452,39 +4403,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {100, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {100, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4562,98 +4513,98 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {194, 62}} - - - - {{15, 53}, {196, 78}} - - {0, 0} - - 67108864 - 0 - Display Orientation - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {150, 38}} - - YES - NO - 2 - 1 - - YES - - -2080374784 - 0 - Main Screen First - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Touch Screen First - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {194, 62}} + + + + {{15, 53}, {196, 78}} + + {0, 0} + + 67108864 + 0 + Display Orientation + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {150, 38}} + + YES + NO + 2 + 1 + + YES + + -2080374784 + 0 + Main Screen First + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Touch Screen First + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4730,39 +4681,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {150, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {150, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -4840,1667 +4791,1667 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {194, 62}} - - - - {{218, 53}, {196, 78}} - - {0, 0} - - 67108864 - 0 - Display Order - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{15, 18}, {126, 17}} - - YES - - 68157504 - 4195328 - Display Separation: - - - - - - NO - 1 - - - - 268 - {{339, 16}, {72, 22}} - - YES - - -1804599231 - 71304192 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumIntegerDigits - minimum - multiplier - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - #0.#% - -∞ - - - #0.#% - +∞ - - - - #0.#% - #0.#% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - - YES - - - - NO - 1 - - - - 268 - {{144, 12}, {189, 26}} - - YES - - -2080112384 - 0 - - - 200 - 0.0 - 0.0 - 0.0 - 5 - 1 - NO - NO - - NO - - - - 268 - {{305, 38}, {38, 11}} - - YES - - 68157504 - 138675200 - 200% - - .HelveticaNeueDeskInterface-Regular - 9 - 3600 - - - - - - NO - 1 - - - - 268 - {{263, 38}, {38, 11}} - - YES - - 68157504 - 138675200 - 150% - - - - - - NO - 1 - - - - 268 - {{220, 38}, {38, 11}} - - YES - - 68157504 - 138675200 - 100% - - - - - - NO - 1 - - - - 268 - {{178, 38}, {38, 11}} - - YES - - 68157504 - 138675200 - 50% - - - - - - NO - 1 - - - - 268 - {{137, 38}, {38, 11}} - - YES - - 68157504 - 138675200 - 0% - - - - - - NO - 1 - - - {{1, 1}, {429, 141}} - - - - {{6, 56}, {431, 157}} - - {0, 0} - - 67108864 - 0 - Dual Screen Display Layout - - - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {443, 366}} - - - Display Views - - - - - 2 - - - 256 - - YES - - - 268 - {{167, 270}, {151, 26}} - - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - None - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Nearest 2x - - 2147483647 - - - _popUpItemAction: - 11 - - - - - Scanline - - 2147483647 - - - _popUpItemAction: - 9 - - - - - EPX - - 2147483647 - - - _popUpItemAction: - 14 - - - - - EPX+ - - 2147483647 - - - _popUpItemAction: - 15 - - - - - Super Eagle - - 2147483647 - - - _popUpItemAction: - 8 - - - - - 2xSaI - - 2147483647 - - - _popUpItemAction: - 6 - - - - - Super 2xSaI - - 2147483647 - - - _popUpItemAction: - 7 - - - - - LQ2x - - 2147483647 - - - _popUpItemAction: - 1 - - - - - LQ2xS - - 2147483647 - - - _popUpItemAction: - 2 - - - - - HQ2x - - 2147483647 - - - _popUpItemAction: - 3 - - - - - HQ2xS - - 2147483647 - - - _popUpItemAction: - 4 - - - - - HQ4x - - 2147483647 - - - _popUpItemAction: - 5 - - - - - HQ4xS - - 2147483647 - - - _popUpItemAction: - 18 - - - - - 2xBRZ - - 2147483647 - - - _popUpItemAction: - 19 - - - - - 3xBRZ - - 2147483647 - - - _popUpItemAction: - 20 - - - - - 4xBRZ - - 2147483647 - - - _popUpItemAction: - 21 - - - - - 5xBRZ - - 2147483647 - - - _popUpItemAction: - 22 - - - - YES - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{59, 249}, {106, 17}} - - YES - - 68157504 - 71304192 - Preview: - - - - - - NO - 1 - - - - 268 - {{59, 276}, {106, 17}} - - - YES - - 68157504 - 71304192 - Pixel Scaler: - - - - - - NO - 1 - - - - 268 - {{167, 297}, {151, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Bilinear - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - Nearest Neighbor - - 2147483647 - - - _popUpItemAction: - - - - - - Bicubic (B-Spline) - - 2147483647 - - - _popUpItemAction: - 2 - - - - - Bicubic (Mitchell-Netravali) - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Lanczos2 - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Lanczos3 - - 2147483647 - - - _popUpItemAction: - 5 - - - - YES - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{59, 303}, {106, 17}} - - - YES - - 68157504 - 71304192 - Output Filter: - - - - - - NO - 1 - - - - 268 - {{168, 347}, {129, 18}} - - - YES - - 67108864 - 0 - Use vertical sync - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 192}, {98, 18}} - - _NS:682 - YES - - 67108864 - 0 - Deposterize - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {151, 218}} - - _NS:21 - - - {{6, 6}, {153, 234}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Source Filters - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{168, 327}, {206, 18}} - - _NS:682 - YES - - -2080374784 - 0 - Run filters on GPU if possible - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{170, 10}, {256, 256}} - - _NS:1109 - DisplayPreviewView - - - {{10, 33}, {443, 366}} - - Video Settings - - - - - 4 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 150}, {239, 18}} - - YES - - -2080374784 - 0 - High-Precision Color Interpolation - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 130}, {154, 18}} - - YES - - -2080374784 - 0 - Enable Edge Marking - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 110}, {91, 18}} - - YES - - -2080374784 - 0 - Enable Fog - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{215, 42}, {60, 22}} - - YES - - -1804599231 - 71304192 - - - - YES - - YES - allowsFloats - attributedStringForZero - currencyDecimalSeparator - currencySymbol - decimalSeparator - exponentSymbol - formatterBehavior - generatesDecimalNumbers - groupingSeparator - internationalCurrencySymbol - lenient - locale - maximumFractionDigits - maximumIntegerDigits - minimumFractionDigits - minusSign - negativeFormat - negativeInfinitySymbol - negativePrefix - negativeSuffix - nilSymbol - notANumberSymbol - numberStyle - paddingCharacter - perMillSymbol - percentSymbol - plusSign - positiveFormat - positiveInfinitySymbol - positivePrefix - positiveSuffix - roundingIncrement - roundingMode - usesGroupingSeparator - - - YES - - - 0 - - - . - ¤ - . - E - - - , - ¤¤ - - - - - - - - # - -∞ - - - - - NaN - - * - - % - + - # - +∞ - - - - - - - - # - # - - - - - - - - NaN - - - - 0 - 0 - YES - NO - 1 - AAAAAAAAAAAAAAAAAAAAAA - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - - 268 - {{15, 44}, {195, 17}} - - YES - - 68157504 - 4195328 - Depth Comparison Threshold: - - - - - - NO - 1 - - - - 268 - {{276, 39}, {19, 27}} - - YES - - 67895328 - 0 - - - 100 - 1 - YES - - NO - - - - 268 - {{16, 90}, {129, 18}} - - YES - - -2080374784 - 0 - Enable Line Hack - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 70}, {225, 18}} - - YES - - -2080374784 - 0 - Enable Fragment Sampling Hack - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{145, 10}, {150, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Automatic - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Single-Threaded - - 2147483647 - - - _popUpItemAction: - 1 - - - - - 2 Threads - - 2147483647 - - - _popUpItemAction: - 2 - - - - - 4 Threads - - 2147483647 - - - _popUpItemAction: - 4 - - - - - 8 Threads - - 2147483647 - - - _popUpItemAction: - 8 - - - - - 16 Threads - - 2147483647 - - - _popUpItemAction: - 16 - - - - - 32 Threads - - 2147483647 - - - _popUpItemAction: - 32 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{15, 16}, {128, 17}} - - YES - - 68157504 - 4195328 - Rendering Threads: - - - - - - NO - 1 - - - {{1, 1}, {310, 176}} - - - - {{64, 74}, {312, 192}} - - {0, 0} - - 67108864 - 0 - SoftRasterizer Options - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{207, 326}, {169, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - SoftRasterizer - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - None - - 2147483647 - - - _popUpItemAction: - - - - - - OpenGL - - 2147483647 - - - _popUpItemAction: - 2 - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{37, 332}, {168, 17}} - - YES - - 68157504 - 71304192 - 3D Rendering Engine: - - - - - - NO - 1 - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {124, 18}} - - YES - - -2080374784 - 0 - Enable Textures - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {310, 38}} - - - - {{64, 270}, {312, 54}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {223, 18}} - - YES - - 67108864 - 0 - Enable Multisample Antialiasing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {310, 38}} - - - - {{64, 16}, {312, 54}} - - {0, 0} - - 67108864 - 0 - OpenGL Options - - - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {443, 366}} - - 3D Rendering - - - - - - - 0 - YES - YES - - YES - - - - - {489, 437} - NSView - - - - 268 - - YES - - - 268 - {{163, 329}, {220, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - OS X Core Audio - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - 58325 - - - YES - - OtherViews - - YES - - - None - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 335}, {144, 17}} - - YES - - 68157504 - 272630784 - Audio Output Engine: - - - - - - NO - 1 - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {153, 18}} - - YES - - -2080374784 - 0 - Advanced SPU Logic - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {364, 38}} - - - - {{17, 209}, {366, 54}} - - {0, 0} - - 67108864 - 0 - SPU Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 15}, {180, 46}} - - YES - NO - 2 - 1 - - YES - - 67108864 - 0 - Dual SPU Synch/Asynch - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 0 - Synchronous - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {194, 62}} + + + + {{218, 53}, {196, 78}} + + {0, 0} + + 67108864 + 0 + Display Order + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{15, 18}, {126, 17}} + + YES + + 68157504 + 4195328 + Display Separation: + + + + + + NO + 1 + + + + 268 + {{339, 16}, {72, 22}} + + YES + + -1804599231 + 71304192 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumIntegerDigits + minimum + multiplier + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + #0.#% + -∞ + + + #0.#% + +∞ + + + + #0.#% + #0.#% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + + YES + + + + NO + 1 + + + + 268 + {{144, 12}, {189, 26}} + + YES + + -2080112384 + 0 + + + 200 + 0.0 + 0.0 + 0.0 + 5 + 1 + NO + NO + + NO + + + + 268 + {{305, 38}, {38, 11}} + + YES + + 68157504 + 138675200 + 200% + + LucidaGrande + 9 + 3600 + + + + + + NO + 1 + + + + 268 + {{263, 38}, {38, 11}} + + YES + + 68157504 + 138675200 + 150% + + + + + + NO + 1 + + + + 268 + {{220, 38}, {38, 11}} + + YES + + 68157504 + 138675200 + 100% + + + + + + NO + 1 + + + + 268 + {{178, 38}, {38, 11}} + + YES + + 68157504 + 138675200 + 50% + + + + + + NO + 1 + + + + 268 + {{137, 38}, {38, 11}} + + YES + + 68157504 + 138675200 + 0% + + + + + + NO + 1 + + + {{1, 1}, {429, 141}} + + + + {{6, 56}, {431, 157}} + + {0, 0} + + 67108864 + 0 + Dual Screen Display Layout + + + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {443, 366}} + + + Display Views + + + + + 2 + + + 256 + + YES + + + 268 + {{167, 270}, {206.16796875, 26}} + + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + None + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Nearest 2x + + 2147483647 + + + _popUpItemAction: + 11 + + + + + Scanline + + 2147483647 + + + _popUpItemAction: + 9 + + + + + EPX + + 2147483647 + + + _popUpItemAction: + 14 + + + + + EPX+ + + 2147483647 + + + _popUpItemAction: + 15 + + + + + Super Eagle + + 2147483647 + + + _popUpItemAction: + 8 + + + + + 2xSaI + + 2147483647 + + + _popUpItemAction: + 6 + + + + + Super 2xSaI + + 2147483647 + + + _popUpItemAction: + 7 + + + + + LQ2x + + 2147483647 + + + _popUpItemAction: + 1 + + + + + LQ2xS + + 2147483647 + + + _popUpItemAction: + 2 + + + + + HQ2x + + 2147483647 + + + _popUpItemAction: + 3 + + + + + HQ2xS + + 2147483647 + + + _popUpItemAction: + 4 + + + + + HQ4x + + 2147483647 + + + _popUpItemAction: + 5 + + + + + HQ4xS + + 2147483647 + + + _popUpItemAction: + 18 + + + + + 2xBRZ + + 2147483647 + + + _popUpItemAction: + 19 + + + + + 3xBRZ + + 2147483647 + + + _popUpItemAction: + 20 + + + + + 4xBRZ + + 2147483647 + + + _popUpItemAction: + 21 + + + + + 5xBRZ + + 2147483647 + + + _popUpItemAction: + 22 + + + + YES + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{59, 249}, {106, 17}} + + YES + + 68157504 + 71304192 + Preview: + + + + + + NO + 1 + + + + 268 + {{59, 276}, {106, 17}} + + + YES + + 68157504 + 71304192 + Pixel Scaler: + + + + + + NO + 1 + + + + 268 + {{167.16796875, 297}, {206, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Bilinear + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + Nearest Neighbor + + 2147483647 + + + _popUpItemAction: + + + + + + Bicubic (B-Spline) + + 2147483647 + + + _popUpItemAction: + 2 + + + + + Bicubic (Mitchell-Netravali) + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Lanczos2 + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Lanczos3 + + 2147483647 + + + _popUpItemAction: + 5 + + + + YES + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{59, 303}, {106, 17}} + + + YES + + 68157504 + 71304192 + Output Filter: + + + + + + NO + 1 + + + + 268 + {{168, 347}, {129, 18}} + + + YES + + 67108864 + 0 + Use vertical sync + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 192}, {98, 18}} + + _NS:682 + YES + + 67108864 + 0 + Deposterize + + _NS:682 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {151, 218}} + + _NS:21 + + + {{6, 6}, {153, 234}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Source Filters + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{168, 327}, {206, 18}} + + _NS:682 + YES + + -2080374784 + 0 + Run filters on GPU if possible + + _NS:682 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{170, 10}, {256, 256}} + + _NS:1109 + DisplayPreviewView + + + {{10, 33}, {443, 366}} + + Video Settings + + + + + 4 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 150}, {239, 18}} + + YES + + -2080374784 + 0 + High-Precision Color Interpolation + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 130}, {154, 18}} + + YES + + -2080374784 + 0 + Enable Edge Marking + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 110}, {92, 18}} + + YES + + -2080374784 + 0 + Enable Fog + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{215, 42}, {60, 22}} + + YES + + -1804599231 + 71304192 + + + + YES + + YES + allowsFloats + attributedStringForZero + currencyDecimalSeparator + currencySymbol + decimalSeparator + exponentSymbol + formatterBehavior + generatesDecimalNumbers + groupingSeparator + internationalCurrencySymbol + lenient + locale + maximumFractionDigits + maximumIntegerDigits + minimumFractionDigits + minusSign + negativeFormat + negativeInfinitySymbol + negativePrefix + negativeSuffix + nilSymbol + notANumberSymbol + numberStyle + paddingCharacter + perMillSymbol + percentSymbol + plusSign + positiveFormat + positiveInfinitySymbol + positivePrefix + positiveSuffix + roundingIncrement + roundingMode + usesGroupingSeparator + + + YES + + + 0 + + + . + ¤ + . + E + + + , + ¤¤ + + + + + + - + # + -∞ + - + + + NaN + + * + + % + + + # + +∞ + + + + + + + + # + # + + + + + + + + NaN + + + + 0 + 0 + YES + NO + 1 + AAAAAAAAAAAAAAAAAAAAAA + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + + 268 + {{15, 44}, {195, 17}} + + YES + + 68157504 + 4195328 + Depth Comparison Threshold: + + + + + + NO + 1 + + + + 268 + {{276, 39}, {19, 27}} + + YES + + 67895328 + 0 + + + 100 + 1 + YES + + NO + + + + 268 + {{16, 90}, {130, 18}} + + YES + + -2080374784 + 0 + Enable Line Hack + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 70}, {225, 18}} + + YES + + -2080374784 + 0 + Enable Fragment Sampling Hack + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{145, 10}, {150, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Automatic + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Single-Threaded + + 2147483647 + + + _popUpItemAction: + 1 + + + + + 2 Threads + + 2147483647 + + + _popUpItemAction: + 2 + + + + + 4 Threads + + 2147483647 + + + _popUpItemAction: + 4 + + + + + 8 Threads + + 2147483647 + + + _popUpItemAction: + 8 + + + + + 16 Threads + + 2147483647 + + + _popUpItemAction: + 16 + + + + + 32 Threads + + 2147483647 + + + _popUpItemAction: + 32 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{15, 16}, {128, 17}} + + YES + + 68157504 + 4195328 + Rendering Threads: + + + + + + NO + 1 + + + {{1, 1}, {310, 176}} + + + + {{64, 74}, {312, 192}} + + {0, 0} + + 67108864 + 0 + SoftRasterizer Options + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{207, 326}, {169, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + SoftRasterizer + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + None + + 2147483647 + + + _popUpItemAction: + + + + + + OpenGL + + 2147483647 + + + _popUpItemAction: + 2 + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{37, 332}, {168, 17}} + + YES + + 68157504 + 71304192 + 3D Rendering Engine: + + + + + + NO + 1 + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {124, 18}} + + YES + + -2080374784 + 0 + Enable Textures + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {310, 38}} + + + + {{64, 270}, {312, 54}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {223, 18}} + + YES + + 67108864 + 0 + Enable Multisample Antialiasing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {310, 38}} + + + + {{64, 16}, {312, 54}} + + {0, 0} + + 67108864 + 0 + OpenGL Options + + + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {443, 366}} + + 3D Rendering + + + + + + + 0 + YES + YES + + YES + + + + + {489, 437} + NSView + + + + 268 + + YES + + + 268 + {{163, 329}, {220, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + OS X Core Audio + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + 58325 + + + YES + + OtherViews + + YES + + + None + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 335}, {144, 17}} + + YES + + 68157504 + 272630784 + Audio Output Engine: + + + + + + NO + 1 + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {153, 18}} + + YES + + -2080374784 + 0 + Advanced SPU Logic + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {364, 38}} + + + + {{17, 209}, {366, 54}} + + {0, 0} + + 67108864 + 0 + SPU Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 15}, {180, 46}} + + YES + NO + 2 + 1 + + YES + + 67108864 + 0 + Dual SPU Synch/Asynch + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 0 + Synchronous + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6577,39 +6528,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {180, 18} - {4, 10} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {180, 18} + {4, 10} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6687,168 +6638,168 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 1 - - - - - - - - 268 - {{145, 10}, {204, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - "N" Method - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - "Z" Method - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - "P" Method - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {364, 71}} - - - - {{17, 16}, {366, 87}} - - {0, 0} - - 67108864 - 0 - SPU Sound Synchronization Method - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {328, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 0 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Linear - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + + 268 + {{145, 10}, {204, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + "N" Method + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + "Z" Method + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + "P" Method + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {364, 71}} + + + + {{17, 16}, {366, 87}} + + {0, 0} + + 67108864 + 0 + SPU Sound Synchronization Method + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {328, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 0 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Linear + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -6925,52 +6876,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - -2080374784 - 0 - Cosine - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {328, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + -2080374784 + 0 + Cosine + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {328, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -7048,367 +6999,367 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 2 - - - - - - - {{1, 1}, {364, 82}} - - - - {{17, 107}, {366, 98}} - - {0, 0} - - 67108864 - 0 - SPU Interpolation Method - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{44, 13}, {246, 21}} - - YES - - 67371264 - 0 - - - 100 - 0.0 - 100 - 0.0 - 0 - 1 - NO - NO - - NO - - - - 268 - {{293, 17}, {56, 17}} - - YES - - 68157504 - 71308288 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - multiplier - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - #0.0% - #0.0% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.1f%% - - - - - NO - 1 - - - - 289 - - 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 - - - {{18, 14}, {20, 20}} - - YES - - 134217728 - 33554432 - - NSImage - Icon_VolumeFull_16x16 - - 0 - 2 - 0 - YES - - NO - YES - - - {{1, 1}, {364, 44}} - - - - {{17, 267}, {366, 60}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - - - 1 - 0 - 2 - NO - - - {400, 373} - NSView - - - - 268 - - YES - - - 12 - {{13, 10}, {528, 349}} - - - YES - - 1 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {198, 18}} - - YES - - -2080374784 - 0 - Advanced Bus-Level Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {217, 18}} - - YES - - 67108864 - 0 - Rigorous 3D Rendering Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 58}} - - - - {{6, 229}, {496, 74}} - - {0, 0} - - 67108864 - 0 - Emulation Timing - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {165, 38}} - - YES - NO - 2 - 1 - - YES - - -2080374784 - 0 - Interpreter - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Dynamic Recompiler - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 2 + + + + + + + {{1, 1}, {364, 82}} + + + + {{17, 107}, {366, 98}} + + {0, 0} + + 67108864 + 0 + SPU Interpolation Method + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{44, 13}, {246, 21}} + + YES + + 67371264 + 0 + + + 100 + 0.0 + 100 + 0.0 + 0 + 1 + NO + NO + + NO + + + + 268 + {{287, 17}, {62, 17}} + + YES + + 68157504 + 71308288 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + multiplier + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + #0.0% + #0.0% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.1f%% + + + + + NO + 1 + + + + 289 + + 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 + + + {{18, 14}, {20, 20}} + + YES + + 134217728 + 33554432 + + NSImage + Icon_VolumeFull_16x16 + + 0 + 2 + 0 + YES + + NO + YES + + + {{1, 1}, {364, 44}} + + + + {{17, 267}, {366, 60}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + + + 1 + 0 + 2 + NO + + + {400, 373} + NSView + + + + 268 + + YES + + + 12 + {{13, 10}, {528, 349}} + + + YES + + 1 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {198, 18}} + + YES + + -2080374784 + 0 + Advanced Bus-Level Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {217, 18}} + + YES + + 67108864 + 0 + Rigorous 3D Rendering Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 58}} + + + + {{6, 229}, {496, 74}} + + {0, 0} + + 67108864 + 0 + Emulation Timing + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {165, 38}} + + YES + NO + 2 + 1 + + YES + + -2080374784 + 0 + Interpreter + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Dynamic Recompiler + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -7485,39 +7436,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {165, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {165, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -7595,1363 +7546,1357 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{243, 15}, {72, 17}} - - YES - - 68157504 - 71304192 - Block Size: - - - - - - NO - 1 - - - - 268 - {{320, 13}, {50, 22}} - - YES - - -1804599231 - 71304192 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - minimum - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - -∞ - - - +∞ - - - - #0 - #0 - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - - 268 - {{371, 10}, {19, 27}} - - YES - - 67895328 - 0 - - - 12 - 1 - 100 - 1 - YES - - NO - - - {{1, 1}, {494, 62}} - - - - {{6, 147}, {496, 78}} - - {0, 0} - - 67108864 - 0 - CPU Emulation Engine - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {146, 18}} - - YES - - 67108864 - 0 - Use Debug Console - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {118, 18}} - - YES - - 67108864 - 0 - Emulate Ensata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 58}} - - - - {{6, 69}, {496, 74}} - - {0, 0} - - 67108864 - 0 - Debugger Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {462, 18}} - - YES - - -2080374784 - 0 - Use ADVANsCEne Database when auto-detecting the ROM save type - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 38}} - - - - {{6, 11}, {496, 54}} - - {0, 0} - - 67108864 - 0 - ROM Save Configuration - - - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {508, 303}} - - - General Settings - - - - - 2 - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 117}, {183, 18}} - - YES - - 67108864 - 0 - Use External BIOS Images - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{140, 86}, {240, 22}} - - YES - - -2070937536 - 272634880 - - - Set BIOS Image... - - YES - - - - NO - 1 - - - - 268 - {{15, 89}, {120, 17}} - - YES - - 68157504 - 272630784 - ARM9 BIOS Image: - - - - - - NO - 1 - - - - 268 - {{382, 80}, {100, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{140, 59}, {240, 22}} - - YES - - -2070937536 - 272634880 - - - Set BIOS Image... - - YES - - - - NO - 1 - - - - 268 - {{15, 62}, {120, 17}} - - YES - - 68157504 - 272630784 - ARM7 BIOS Image: - - - - - - NO - 1 - - - - 268 - {{382, 53}, {100, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{16, 32}, {230, 18}} - - YES - - -1543503872 - 0 - Emulate BIOS Software Interrupts - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {236, 18}} - - YES - - 603979776 - 0 - Patch DelayLoop SWI (speed hack) - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {494, 143}} - - - - {{6, 144}, {496, 159}} - - {0, 0} - - 67108864 - 0 - BIOS Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 61}, {206, 18}} - - YES - - 603979776 - 0 - Use External Firmware Image - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{140, 33}, {240, 22}} - - YES - - -2070937536 - 272634880 - - - Set Firmware Image... - - YES - - - - NO - 1 - - - - 268 - {{15, 37}, {120, 17}} - - YES - - 68157504 - 272630784 - Firmware Image: - - - - - - NO - 1 - - - - 268 - {{382, 27}, {100, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {149, 18}} - - YES - - 603979776 - 0 - Boot From Firmware - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 81}, {229, 32}} - - YES - - 67108864 - 134217728 - Configure Internal Firmware... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {494, 119}} - - - - {{6, 5}, {496, 135}} - - {0, 0} - - 67108864 - 0 - Firmware Configuration - - - - - - 1 - 0 - 2 - NO - - - {{10, 33}, {508, 303}} - - BIOS and Firmware - - - - - - - 0 - YES - YES - - YES - - - - - {554, 373} - NSView - - - PreferencesWindowDelegate - - - 9 - 2 - {{235, 426}, {620, 442}} - 1685586944 - Input Profile - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - {620, 180} - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 256 - {620, 304} - - - YES - NO - YES - - - 256 - {620, 17} - - - - - - - -2147483392 - {{584, 0}, {16, 17}} - - - - - YES - - InputCommandIconColumn - 35 - 16 - 3.4028234663852886e+38 - - 75497536 - 2048 - - - - - - - 135266368 - 33686528 - 0 - 3 - 0 - NO - - - - - InputCommandTagColumn - 181 - 16 - 1000 - - 75497536 - 2048 - Command - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 68157504 - 272761856 - Text - - - - - - 3 - YES - - - - InputDeviceColumn - 222 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Device - - - - - - 70254657 - 136192 - Text Cell - - - - - - 3 - YES - - - - InputSettingsSummaryColumn - 151 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Input Settings Summary - - - - - - 70254657 - 136192 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 17 - 1386217472 - - - 0 - 15 - 0 - NO - 0 - 1 - NO - - - {{1, 17}, {620, 304}} - - - - - 4 - YES - - - - -2147483392 - {{584, 17}, {15, 102}} - - - NO - _doScroller: - - - _doScroller: - 0.95844875346260383 - - - - -2147483392 - {{1, 325}, {599, 15}} - - - NO - _doScroller: - - 1 - - _doScroller: - 0.99667221297836939 - - - - 2304 - - YES - - - {{1, 0}, {620, 17}} - - - - YES - - - - {{-1, 60}, {622, 322}} - - - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{19, 419}, {72, 14}} - - - YES - - 68157504 - 272761856 - Profile Name - - - - - - NO - 1 - - - - 289 - {{510, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Close - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 266 - {{20, 396}, {392, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 292 - {{14, 12}, {236, 32}} - - - YES - - 67108864 - 134217728 - Apply to Current Configuration - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 265 - {{510, 390}, {96, 32}} - - - YES - - 67108864 - 134217728 - Next - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 265 - {{414, 390}, {96, 32}} - - - YES - - 67108864 - 134217728 - Previous - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 292 - {{250, 12}, {96, 32}} - - - YES - - 67108864 - 134217728 - Delete - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {620, 442} - - - {{0, 0}, {1920, 1178}} - {620, 202} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 444}, {452, 115}} - 1685586944 - Input Profile Rename - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 266 - {{20, 48}, {412, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{342, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{17, 78}, {215, 17}} - - YES - - 68157504 - 272630784 - Enter a new name for this profile: - - - - - - NO - 1 - - - {452, 115} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{157, 353}, {300, 108}} - 1685586944 - InputSettingsNDSInput - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{17, 71}, {266, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - - 268 - {{18, 47}, {63, 18}} - - _NS:682 - YES - - -2080374784 - 0 - Turbo - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{190, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{94, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - {300, 108} - _NS:122 - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - NO - - - 1 - 2 - {{235, 292}, {620, 267}} - 1685586944 - InputSettingsMicrophone - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {190, 126}} - - YES - NO - 4 - 1 - - YES - - -2080374784 - 0 - Internal Noise Samples - - - 1 - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - White Noise - - - 3 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{242, 15}, {73, 17}} + + YES + + 68157504 + 71304192 + Block Size: + + + + + + NO + 1 + + + + 268 + {{320, 13}, {50, 22}} + + YES + + -1804599231 + 71304192 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + minimum + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + -∞ + + + +∞ + + + + #0 + #0 + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + + 268 + {{371, 10}, {19, 27}} + + YES + + 67895328 + 0 + + + 12 + 1 + 100 + 1 + YES + + NO + + + {{1, 1}, {494, 62}} + + + + {{6, 147}, {496, 78}} + + {0, 0} + + 67108864 + 0 + CPU Emulation Engine + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {146, 18}} + + YES + + 67108864 + 0 + Use Debug Console + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {118, 18}} + + YES + + 67108864 + 0 + Emulate Ensata + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 58}} + + + + {{6, 69}, {496, 74}} + + {0, 0} + + 67108864 + 0 + Debugger Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {462, 18}} + + YES + + -2080374784 + 0 + Use ADVANsCEne Database when auto-detecting the ROM save type + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 38}} + + + + {{6, 11}, {496, 54}} + + {0, 0} + + 67108864 + 0 + ROM Save Configuration + + + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {508, 303}} + + + General Settings + + + + + 2 + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 117}, {185, 18}} + + YES + + 67108864 + 0 + Use External BIOS Images + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{140, 86}, {240, 22}} + + YES + + -2070937536 + 272634880 + + + Set BIOS Image... + + YES + + + + NO + 1 + + + + 268 + {{15, 89}, {124, 17}} + + YES + + 68157504 + 272630784 + ARM9 BIOS Image: + + + + + + NO + 1 + + + + 268 + {{382, 80}, {100, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{140, 59}, {240, 22}} + + YES + + -2070937536 + 272634880 + + + Set BIOS Image... + + YES + + + + NO + 1 + + + + 268 + {{15, 62}, {124, 17}} + + YES + + 68157504 + 272630784 + ARM7 BIOS Image: + + + + + + NO + 1 + + + + 268 + {{382, 53}, {100, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{16, 32}, {230, 18}} + + YES + + -1543503872 + 0 + Emulate BIOS Software Interrupts + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {239, 18}} + + YES + + 603979776 + 0 + Patch DelayLoop SWI (speed hack) + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {494, 143}} + + + + {{6, 144}, {496, 159}} + + {0, 0} + + 67108864 + 0 + BIOS Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 61}, {206, 18}} + + YES + + 603979776 + 0 + Use External Firmware Image + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{140, 33}, {240, 22}} + + YES + + -2070937536 + 272634880 + + + Set Firmware Image... + + YES + + + + NO + 1 + + + + 268 + {{15, 37}, {120, 17}} + + YES + + 68157504 + 272630784 + Firmware Image: + + + + + + NO + 1 + + + + 268 + {{382, 27}, {100, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {149, 18}} + + YES + + 603979776 + 0 + Boot From Firmware + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{12, 81}, {229, 32}} + + YES + + 67108864 + 134217728 + Configure Internal Firmware... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {494, 119}} + + + + {{6, 5}, {496, 135}} + + {0, 0} + + 67108864 + 0 + Firmware Configuration + + + + + + 1 + 0 + 2 + NO + + + {{10, 33}, {508, 303}} + + BIOS and Firmware + + + + + + + 0 + YES + YES + + YES + + + + + {554, 373} + NSView + + + PreferencesWindowDelegate + + + 9 + 2 + {{235, 426}, {620, 442}} + 1685586944 + Input Profile + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {620, 180} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 256 + {620, 304} + + + YES + NO + YES + + + 256 + {620, 17} + + + + + + + -2147483392 + {{584, 0}, {16, 17}} + + + + + YES + + InputCommandIconColumn + 35 + 16 + 3.4028234663852886e+38 + + 75497536 + 2048 + + + + + + + 135266368 + 33686528 + 0 + 3 + 0 + NO + + + + + InputCommandTagColumn + 181 + 16 + 1000 + + 75497536 + 2048 + Command + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 68157504 + 272761856 + Text + + + + + + 3 + YES + + + + InputDeviceColumn + 222 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Device + + + + + + 70254657 + 136192 + Text Cell + + + + + + 3 + YES + + + + InputSettingsSummaryColumn + 151 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Input Settings Summary + + + + + + 70254657 + 136192 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 17 + 1386217472 + + + 0 + 15 + 0 + NO + 0 + 1 + NO + + + {{1, 17}, {620, 304}} + + + + + 4 + + + + -2147483392 + {{584, 17}, {15, 102}} + + + NO + + _doScroller: + 0.95844875346260383 + + + + -2147483392 + {{1, 325}, {599, 15}} + + + NO + 1 + + _doScroller: + 0.99667221297836939 + + + + 2304 + + YES + + + {{1, 0}, {620, 17}} + + + + + + + {{-1, 60}, {622, 322}} + + + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 268 + {{19, 419}, {72, 14}} + + + YES + + 68157504 + 272761856 + Profile Name + + + + + + NO + 1 + + + + 289 + {{510, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Close + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 266 + {{20, 396}, {392, 22}} + + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 292 + {{14, 12}, {236, 32}} + + + YES + + 67108864 + 134217728 + Apply to Current Configuration + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 265 + {{510, 390}, {96, 32}} + + + YES + + 67108864 + 134217728 + Next + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 265 + {{414, 390}, {96, 32}} + + + YES + + 67108864 + 134217728 + Previous + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 292 + {{250, 12}, {96, 32}} + + + YES + + 67108864 + 134217728 + Delete + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {620, 442} + + + {{0, 0}, {1920, 1178}} + {620, 202} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 444}, {452, 115}} + 1685586944 + Input Profile Rename + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 266 + {{20, 48}, {412, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 268 + {{342, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{17, 78}, {215, 17}} + + YES + + 68157504 + 272630784 + Enter a new name for this profile: + + + + + + NO + 1 + + + {452, 115} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{157, 353}, {300, 108}} + 1685586944 + InputSettingsNDSInput + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 71}, {266, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + + 268 + {{18, 47}, {63, 18}} + + _NS:682 + YES + + -2080374784 + 0 + Turbo + + _NS:682 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{190, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{94, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + {300, 108} + _NS:122 + + {{0, 0}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + NO + + + 1 + 2 + {{235, 292}, {620, 267}} + 1685586944 + InputSettingsMicrophone + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {190, 126}} + + YES + NO + 4 + 1 + + YES + + -2080374784 + 0 + Internal Noise Samples + + + 1 + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + White Noise + + + 3 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -9028,65 +8973,65 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Sine Wave - - - 5 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Audio File - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {190, 30} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + Sine Wave + + + 5 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Audio File + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {190, 30} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -9164,1539 +9109,1539 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{130, 18}, {224, 21}} - - YES - - 612368448 - 272635904 - - - File Name - - YES - - - - NO - 1 - - - - 268 - {{476, 11}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{128, 47}, {348, 26}} - - YES - - -2080112384 - 0 - - - 5000 - 100 - 500 - 0.0 - 11 - 1 - NO - NO - - NO - - - - 268 - {{479, 56}, {90, 17}} - - YES - - 68157504 - 71308288 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - generatesDecimalNumbers - locale - maximumFractionDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - -∞ - - - #0.0 Hz - +∞ - - - - #0.0 Hz - #0.0 Hz - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.1f Hz - - - - - NO - 1 - - - - 268 - {{356, 11}, {124, 32}} - - YES - - 67108864 - 134217728 - Choose None - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {584, 150}} - - - - {{17, 56}, {586, 166}} - - {0, 0} - - 67108864 - 0 - Audio Sample Generators - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{510, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{414, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 230}, {586, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - {620, 267} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 296}, {350, 263}} - 1685586944 - InputSettingsTouch - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{97, 44}, {17, 17}} - - YES - - 68157504 - 71304192 - X: - - - - - - NO - 1 - - - - 268 - {{119, 42}, {96, 22}} - - YES - - -1804599231 - -1874852864 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - maximumIntegerDigits - minimum - minimumIntegerDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - - 268 - {{97, 16}, {17, 17}} - - YES - - 68157504 - 71304192 - Y: - - - - - - NO - 1 - - - - 268 - {{119, 14}, {96, 22}} - - YES - - -1804599231 - -1874852864 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - maximumIntegerDigits - minimum - minimumIntegerDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - {{1, 1}, {314, 74}} - - - - {{17, 56}, {316, 90}} - - {0, 0} - - 67108864 - 0 - User Defined Coordinates - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{18, 202}, {206, 18}} - - YES - - 67108864 - 0 - Use user defined coordinates - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 154}, {316, 42}} - - YES - - 67108864 - 272760832 - If this setting is disabled, then the Touch command will read the coordinates from the input device instead. - - - - - - NO - 1 - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 226}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - {350, 263} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 434}, {350, 125}} - 1685586944 - InputSettingsLoadStateSlot - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{121, 56}, {212, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Slot 1 - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Slot 2 - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Slot 3 - - 2147483647 - - - _popUpItemAction: - 2 - - - - - Slot 4 - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Slot 5 - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Slot 6 - - 2147483647 - - - _popUpItemAction: - 5 - - - - - Slot 7 - - 2147483647 - - - _popUpItemAction: - 6 - - - - - Slot 8 - - 2147483647 - - - _popUpItemAction: - 7 - - - - - Slot 9 - - 2147483647 - - - _popUpItemAction: - 8 - - - - - Slot 10 - - 2147483647 - - - _popUpItemAction: - 9 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 62}, {102, 17}} - - YES - - 68157504 - 272630784 - Load State Slot: - - - - - - NO - 1 - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 88}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - {350, 125} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 459}, {350, 125}} - 1685586944 - InputSettingsSaveStateSlot - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{119, 56}, {214, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Slot 1 - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Slot 2 - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Slot 3 - - 2147483647 - - - _popUpItemAction: - 2 - - - - - Slot 4 - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Slot 5 - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Slot 6 - - 2147483647 - - - _popUpItemAction: - 5 - - - - - Slot 7 - - 2147483647 - - - _popUpItemAction: - 6 - - - - - Slot 8 - - 2147483647 - - - _popUpItemAction: - 7 - - - - - Slot 9 - - 2147483647 - - - _popUpItemAction: - 8 - - - - - Slot 10 - - 2147483647 - - - _popUpItemAction: - 9 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 62}, {100, 17}} - - YES - - 68157504 - 272630784 - Save State Slot: - - - - - - NO - 1 - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 88}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - {350, 125} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 399}, {467, 160}} - 1685586944 - InputSettingsSpeedLimit - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{17, 123}, {425, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - - 268 - {{30, 71}, {411, 26}} - - YES - - -2080112384 - 0 - - - 10 - 0.0 - 1 - 0.0 - 11 - 1 - NO - NO - - NO - - - - 268 - {{20, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 0x - - - - - - NO - 1 - - - - 268 - {{412, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 10x - - - - - - NO - 1 - - - - 268 - {{98, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 2x - - - - - - NO - 1 - - - - 268 - {{177, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 4x - - - - - - NO - 1 - - - - 268 - {{255, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 6x - - - - - - NO - 1 - - - - 268 - {{335, 98}, {38, 17}} - - YES - - 68157504 - 138413056 - 8x - - - - - - NO - 1 - - - - 268 - {{14, 12}, {169, 32}} - - 100 - YES - - 67108864 - 134217728 - Set to Normal Speed - - - -2038022144 - 129 - - - - 400 - 75 - - NO - - - - 268 - {{112, 48}, {156, 17}} - - YES - - 68157504 - 71304192 - Speed limit set to: - - - - - - NO - 1 - - - - 268 - {{270, 48}, {81, 17}} - - YES - - 68157504 - 4195328 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - #0.00x - -∞ - - - #0.00x - +∞ - - - - #0.00x - #0.00x - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.2fx - - - - - NO - 1 - - - - 268 - {{357, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{261, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - {467, 160} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 276}, {516, 283}} - 1685586944 - InputSettingsGPUState - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {444, 142}} - - YES - NO - 6 - 2 - - YES - - -2080374784 - 0 - Main GPU (All Layers) - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Sub GPU (All Layers) - - - 6 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG0 - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{130, 18}, {224, 21}} + + YES + + 612368448 + 272635904 + + + File Name + + YES + + + + NO + 1 + + + + 268 + {{476, 11}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{128, 47}, {348, 26}} + + YES + + -2080112384 + 0 + + + 5000 + 100 + 500 + 0.0 + 11 + 1 + NO + NO + + NO + + + + 268 + {{479, 56}, {90, 17}} + + YES + + 68157504 + 71308288 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + generatesDecimalNumbers + locale + maximumFractionDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + -∞ + + + #0.0 Hz + +∞ + + + + #0.0 Hz + #0.0 Hz + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.1f Hz + + + + + NO + 1 + + + + 268 + {{356, 11}, {124, 32}} + + YES + + 67108864 + 134217728 + Choose None + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {584, 150}} + + + + {{17, 56}, {586, 166}} + + {0, 0} + + 67108864 + 0 + Audio Sample Generators + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{510, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{414, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 230}, {586, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + {620, 267} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 296}, {350, 263}} + 1685586944 + InputSettingsTouch + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{97, 44}, {17, 17}} + + YES + + 68157504 + 71304192 + X: + + + + + + NO + 1 + + + + 268 + {{119, 42}, {96, 22}} + + YES + + -1804599231 + -1874852864 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + maximumIntegerDigits + minimum + minimumIntegerDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + + 268 + {{97, 16}, {17, 17}} + + YES + + 68157504 + 71304192 + Y: + + + + + + NO + 1 + + + + 268 + {{119, 14}, {96, 22}} + + YES + + -1804599231 + -1874852864 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + maximumIntegerDigits + minimum + minimumIntegerDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + {{1, 1}, {314, 74}} + + + + {{17, 56}, {316, 90}} + + {0, 0} + + 67108864 + 0 + User Defined Coordinates + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{18, 202}, {206, 18}} + + YES + + 67108864 + 0 + Use user defined coordinates + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{17, 154}, {316, 42}} + + YES + + 67108864 + 272760832 + If this setting is disabled, then the Touch command will read the coordinates from the input device instead. + + + + + + NO + 1 + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 226}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + {350, 263} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 434}, {350, 125}} + 1685586944 + InputSettingsLoadStateSlot + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{127, 56}, {206, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Slot 1 + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Slot 2 + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Slot 3 + + 2147483647 + + + _popUpItemAction: + 2 + + + + + Slot 4 + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Slot 5 + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Slot 6 + + 2147483647 + + + _popUpItemAction: + 5 + + + + + Slot 7 + + 2147483647 + + + _popUpItemAction: + 6 + + + + + Slot 8 + + 2147483647 + + + _popUpItemAction: + 7 + + + + + Slot 9 + + 2147483647 + + + _popUpItemAction: + 8 + + + + + Slot 10 + + 2147483647 + + + _popUpItemAction: + 9 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 62}, {108, 17}} + + YES + + 68157504 + 272630784 + Load State Slot: + + + + + + NO + 1 + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 88}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + {350, 125} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 459}, {350, 125}} + 1685586944 + InputSettingsSaveStateSlot + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{127, 56}, {206, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Slot 1 + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Slot 2 + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Slot 3 + + 2147483647 + + + _popUpItemAction: + 2 + + + + + Slot 4 + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Slot 5 + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Slot 6 + + 2147483647 + + + _popUpItemAction: + 5 + + + + + Slot 7 + + 2147483647 + + + _popUpItemAction: + 6 + + + + + Slot 8 + + 2147483647 + + + _popUpItemAction: + 7 + + + + + Slot 9 + + 2147483647 + + + _popUpItemAction: + 8 + + + + + Slot 10 + + 2147483647 + + + _popUpItemAction: + 9 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 62}, {108, 17}} + + YES + + 68157504 + 272630784 + Save State Slot: + + + + + + NO + 1 + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 88}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + {350, 125} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 399}, {467, 160}} + 1685586944 + InputSettingsSpeedLimit + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 123}, {425, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + + 268 + {{30, 71}, {411, 26}} + + YES + + -2080112384 + 0 + + + 10 + 0.0 + 1 + 0.0 + 11 + 1 + NO + NO + + NO + + + + 268 + {{20, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 0x + + + + + + NO + 1 + + + + 268 + {{412, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 10x + + + + + + NO + 1 + + + + 268 + {{98, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 2x + + + + + + NO + 1 + + + + 268 + {{177, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 4x + + + + + + NO + 1 + + + + 268 + {{255, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 6x + + + + + + NO + 1 + + + + 268 + {{335, 98}, {38, 17}} + + YES + + 68157504 + 138413056 + 8x + + + + + + NO + 1 + + + + 268 + {{14, 12}, {169, 32}} + + 100 + YES + + 67108864 + 134217728 + Set to Normal Speed + + + -2038022144 + 129 + + + + 400 + 75 + + NO + + + + 268 + {{112, 48}, {156, 17}} + + YES + + 68157504 + 71304192 + Speed limit set to: + + + + + + NO + 1 + + + + 268 + {{270, 48}, {81, 17}} + + YES + + 68157504 + 4195328 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + #0.00x + -∞ + + + #0.00x + +∞ + + + + #0.00x + #0.00x + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.2fx + + + + + NO + 1 + + + + 268 + {{357, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{261, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + {467, 160} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 276}, {516, 283}} + 1685586944 + InputSettingsGPUState + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {444, 142}} + + YES + NO + 6 + 2 + + YES + + -2080374784 + 0 + Main GPU (All Layers) + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Sub GPU (All Layers) + + + 6 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG0 + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -10773,156 +10718,156 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Sub BG0 - - - 7 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG1 - - - 2 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub BG1 - - - 8 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG2 - - - 3 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub BG2 - - - 9 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main BG3 - - - 4 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub BG3 - - - 10 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Main OBJ - - - 5 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Sub OBJ - - - 11 - 1211912448 - 0 - - 400 - 75 - - - {220, 22} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + Sub BG0 + + + 7 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG1 + + + 2 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub BG1 + + + 8 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG2 + + + 3 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub BG2 + + + 9 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main BG3 + + + 4 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub BG3 + + + 10 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Main OBJ + + + 5 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Sub OBJ + + + 11 + 1211912448 + 0 + + 400 + 75 + + + {220, 22} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -11000,3752 +10945,3710 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {480, 166}} - - - - {{17, 56}, {482, 182}} - - {0, 0} - - 67108864 - 0 - GPU Layers - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{406, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{310, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 246}, {482, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - {516, 283} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{235, 319}, {350, 240}} - 1685586944 - InputSettingsPaddleController - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{17, 203}, {316, 17}} - - YES - - 70254657 - 272634880 - - - Device Info Summary - - - - - NO - 1 - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{195.08984375, 16}, {38, 17}} - - _NS:4068 - YES - - 68157504 - -2076175360 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - negativeFormat - negativeInfinitySymbol - negativePrefix - nilSymbol - positiveFormat - positiveInfinitySymbol - positivePrefix - zeroSymbol - - - YES - - - - # - -∞ - - - - # - +∞ - + - 0 - - - # - # - - - - 0 - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - %d - _NS:4068 - - - - - NO - 1 - - - - 268 - {{235, 11}, {19, 27}} - - _NS:4123 - YES - - -2146697184 - 0 - _NS:4123 - - 1 - -20 - 20 - 1 - YES - - NO - - - - 268 - {{67, 16}, {127, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - Paddle Adjustment: - - _NS:4068 - - - - - NO - 1 - - - {{1, 1}, {314, 46}} - - - - {{17, 56}, {316, 62}} - - {0, 0} - - 67108864 - 0 - Digital Input Settings - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{240, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{83, 10}, {145, 21}} - - _NS:700 - YES - - -2080374784 - 0 - - _NS:700 - - 20 - 2 - 10 - 0.0 - 0 - 1 - NO - NO - - NO - - - - 268 - {{15, 15}, {65, 11}} - - _NS:4068 - YES - - 68157504 - 272892928 - Less Sensitive - - _NS:4068 - - - - - NO - 1 - - - - 268 - {{231, 15}, {68, 11}} - - _NS:4068 - YES - - 68157504 - 272892928 - More Sensitive - - _NS:4068 - - - - - NO - 1 - - - {{1, 1}, {314, 39}} - - _NS:21 - - - {{17, 122}, {316, 55}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Analog Input Settings - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{17, 185}, {316, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - • This is an analog input. - - _NS:4068 - - - - - NO - 1 - - - - 268 - {{17, 185}, {316, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - • This is a digital input. - - _NS:4068 - - - - - NO - 1 - - - {350, 240} - _NS:122 - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - NO - - - 1 - 2 - {{235, 244}, {305, 315}} - 1685585920 - Internal Firmware Preferences - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{119, 276}, {166, 22}} - - YES - - -1804599231 - 272630784 - - - Enter a nickname... - - YES - - - - NO - 1 - - - - 268 - {{119, 222}, {166, 44}} - - YES - - -1805647871 - 272629760 - - - Enter a message... - - YES - - - - NO - 1 - - - - 268 - {{17, 278}, {97, 17}} - - YES - - 68157504 - 71304192 - Nickname: - - - - - - NO - 1 - - - - 268 - {{17, 246}, {97, 17}} - - YES - - 68157504 - 71304192 - Message: - - - - - - NO - 1 - - - - 268 - {{12, 196}, {102, 17}} - - YES - - 68157504 - 71304192 - Favorite Color: - - - - - - NO - 1 - - - - 268 - {{17, 154}, {97, 17}} - - YES - - 68157504 - 71304192 - Birthday: - - - - - - NO - 1 - - - - 268 - {{17, 126}, {97, 17}} - - YES - - 68157504 - 71304192 - Language: - - - - - - NO - 1 - - - - 268 - {{119, 152}, {169, 27}} - - YES - - 71303168 - 0 - - 330548400 - - - - 0.0 - 224 - - - - NO - - - - 268 - {{116, 120}, {172, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - English - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - Japanese - - 2147483647 - - - _popUpItemAction: - - - - - - French - - 2147483647 - - - _popUpItemAction: - 2 - - - - - German - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Italian - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Spanish - - 2147483647 - - - _popUpItemAction: - 5 - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{116, 190}, {172, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Gray - - 2147483647 - 1 - - NSImage - ColorSwatch_Gray_16x16 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Brown - - 2147483647 - - NSImage - ColorSwatch_Brown_16x16 - - - - _popUpItemAction: - 1 - - - - - Red - - 2147483647 - - NSImage - ColorSwatch_Red_16x16 - - - - _popUpItemAction: - 2 - - - - - Pink - - 2147483647 - - NSImage - ColorSwatch_Pink_16x16 - - - - _popUpItemAction: - 3 - - - - - Orange - - 2147483647 - - NSImage - ColorSwatch_Orange_16x16 - - - - _popUpItemAction: - 4 - - - - - Yellow - - 2147483647 - - NSImage - ColorSwatch_Yellow_16x16 - - - - _popUpItemAction: - 5 - - - - - Lime Green - - 2147483647 - - NSImage - ColorSwatch_LimeGreen_16x16 - - - - _popUpItemAction: - 6 - - - - - Green - - 2147483647 - - NSImage - ColorSwatch_Green_16x16 - - - - _popUpItemAction: - 7 - - - - - Dark Green - - 2147483647 - - NSImage - ColorSwatch_DarkGreen_16x16 - - - - _popUpItemAction: - 8 - - - - - Sea Green - - 2147483647 - - NSImage - ColorSwatch_SeaGreen_16x16 - - - - _popUpItemAction: - 9 - - - - - Turquoise - - 2147483647 - - NSImage - ColorSwatch_Turquoise_16x16 - - - - _popUpItemAction: - 10 - - - - - Blue - - 2147483647 - - NSImage - ColorSwatch_Blue_16x16 - - - - _popUpItemAction: - 11 - - - - - Dark Blue - - 2147483647 - - NSImage - ColorSwatch_DarkBlue_16x16 - - - - _popUpItemAction: - 12 - - - - - Dark Purple - - 2147483647 - - NSImage - ColorSwatch_DarkPurple_16x16 - - - - _popUpItemAction: - 13 - - - - - Violet - - 2147483647 - - NSImage - ColorSwatch_Violet_16x16 - - - - _popUpItemAction: - 14 - - - - - Magenta - - 2147483647 - - NSImage - ColorSwatch_Magenta_16x16 - - - - _popUpItemAction: - 15 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 56}, {271, 56}} - - YES - - 67108864 - 272760832 - Note: These settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. - - - - - - NO - 1 - - - - 268 - {{104, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - {305, 315} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 11 - 2 - {{702, 407}, {700, 405}} - 1685586944 - Game Data Migration Assistant - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - {700, 250} - - - 256 - - YES - - - 268 - {{17, 351}, {666, 34}} - - - YES - - 67108864 - 272629760 - Game data from previous versions of DeSmuME were found. Would you like to migrate your previous game data to work with this version? - - - - - - NO - 1 - - - - 268 - {{17, 351}, {666, 34}} - - - YES - - 67108864 - 272629760 - All of your game data is up to date. - - - - - - NO - 1 - - - - 289 - {{362, 12}, {162, 32}} - - - 2 - YES - - 67108864 - 134217728 - Migrate By Moving - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 289 - {{200, 12}, {162, 32}} - - - YES - - 67108864 - 134217728 - Don't Migrate - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 315}, {666, 28}} - - - YES - - 67108864 - 272633856 - Game data from previous versions may not be fully compatible with the current version, especially Save States. Game data migration cannot guarantee that all your old game data will continue to work. - - - - - - NO - 1 - - - - 268 - {{17, 315}, {666, 28}} - - - YES - - 67108864 - 272633856 - All of your previous game data already exists in this version of DeSmuME. No migration is needed. - - - - - - NO - 1 - - - - 292 - {{18, 21}, {182, 18}} - - - YES - - 67108864 - 0 - Do not ask on startup - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 289 - {{524, 12}, {162, 32}} - - - 1 - YES - - 67108864 - 134217728 - Migrate By Copying - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 274 - - YES - - - 2304 - - YES - - - 256 - {700, 229} - - - _NS:1718 - YES - NO - YES - - - 256 - {700, 17} - - - _NS:1720 - - - - - -2147483392 - {{224, 0}, {16, 17}} - - - _NS:1724 - - - YES - - FileNameColumn - 375 - 50 - 5000 - - 75497536 - 2048 - File Name - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 67108864 - 131072 - File Name - - _NS:1912 - - 1211912448 - 2 - - - - - 200 - 25 - - 3 - YES - - - - FileKindColumn - 135 - 40 - 1000 - - 75497536 - 2048 - Kind - - - - - - 337641536 - 133120 - Text Cell - - - - - - 3 - YES - - - - FileDateModifiedColumn - 181 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Date Modified - - - - - - 337641536 - 133120 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 17 - 1656750080 - - - 1 - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 17}, {700, 229}} - - - - _NS:1716 - - - 4 - YES - - - - -2147483392 - {{224, 17}, {15, 102}} - - - _NS:1741 - NO - _doScroller: - - - _doScroller: - 0.92307692307692313 - - - - -2147483392 - {{1, 197}, {700, 15}} - - - _NS:1743 - NO - _doScroller: - - 1 - - _doScroller: - 0.98176718092566617 - - - - 2304 - - YES - - - {{1, 0}, {700, 17}} - - - - _NS:1721 - - YES - - - - {{-1, 60}, {702, 247}} - - - - _NS:1714 - 133682 - - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - {700, 405} - - - - {{0, 0}, {1920, 1177}} - {700, 272} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - FileMigrationDelegate - - - 1 - 2 - {{157, 261}, {380, 200}} - 1685586944 - ROM Save File Migration - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{17, 112}, {346, 68}} - - YES - - 67108864 - 272629760 - This ROM's save file has not been created yet, but there is a save file with this ROM that has the same file name. Would you like to migrate it to work with DeSmuME? - - - - - - NO - 1 - - - - 268 - {{270, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - Migrate - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{144, 12}, {126, 32}} - - YES - - 67108864 - 134217728 - Don't Migrate - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 268 - {{17, 48}, {346, 56}} - - YES - - 67108864 - 272633856 - Migrating the ROM save file will move it to DeSmuME's game data folder. If you do not migrate the save file now, a new file will be created instead. This will be like starting the ROM for the first time. - - - - - - NO - 1 - - - {380, 200} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 1 - 2 - {{157, 298}, {335, 163}} - 1685586944 - Save State - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{17, 109}, {301, 34}} - - YES - - 67108864 - 272629760 - Would you like to save the emulation state before closing? - - - - - - NO - 1 - - - - 268 - {{220, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - Save - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 268 - {{114, 12}, {106, 32}} - - 2 - YES - - 67108864 - 134217728 - Don't Save - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{17, 59}, {301, 42}} - - YES - - 67108864 - 272633856 - If you haven't already saved using this ROM's save, then not saving the emulation state now will cause any unsaved changes to be lost. - - - - - - NO - 1 - - - - 268 - {{18, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - {335, 163} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 7 - 2 - {{235, 88}, {640, 480}} - 1685586944 - Cheat Manager - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - - YES - - - 2304 - - YES - - - 256 - {270, 335} - - YES - NO - YES - - - 256 - {270, 17} - - - - - - -2147483392 - {{256, 0}, {16, 17}} - - - - YES - - 20 - 20 - 20 - - 75497536 - 2048 - - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 67108864 - 0 - - - - 1215582464 - 2 - - - - - 200 - 25 - - YES - - - - 36 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Type - - - - - - 134217728 - 33554432 - 0 - 0 - 0 - NO - - - - cheatType - YES - compare: - - - - 205 - 10 - 3.4028234663852886e+38 - - 75497536 - 2048 - Description - - - - - - 337641472 - 4325632 - Text Cell - - - - - - 3 - YES - YES - - - - 3 - 2 - - - 42 - 1925185536 - - - 1 - - YES - - - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {270, 335}} - - - - - 4 - YES - - - - 2304 - - YES - - - {{1, 0}, {270, 17}} - - - - YES - - - - -2147483392 - {{256, 17}, {15, 306}} - - NO - _doScroller: - - - _doScroller: - 0.99689440993788825 - - - - -2147483392 - {{1, 323}, {270, 15}} - - NO - _doScroller: - - 1 - - _doScroller: - 0.99630996309963105 - - - - {{20, 49}, {272, 353}} - - - 133682 - - - - - QSAAAEEgAABCMAAAQjAAAA - 0.25 - 4 - 1 - - - - 268 - {{113, 12}, {185, 32}} - - YES - - 67108864 - 134217728 - View Cheat Database... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{47, 19}, {28, 23}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 162 - - NSImage - NSRemoveTemplate - - - - 400 - 75 - - NO - - - - 268 - {{20, 19}, {28, 23}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 162 - - NSImage - NSAddTemplate - - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{100, 372}, {209, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Internal Cheat - - 1048576 - 2147483647 - 1 - - NSImage - Icon_DeSmuME_32x32 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Action Replay - - 1048576 - 2147483647 - - NSImage - Icon_ActionReplay_32x32 - - - - _popUpItemAction: - 1 - - - - - - 1 - YES - YES - 2 - - NO - - - - 301 - {{2, 33}, {320, 290}} - - NSView - - - - 268 - {{16, 402}, {130, 18}} - - YES - - 67108864 - 0 - Enable this cheat - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 378}, {83, 17}} - - YES - - 68157504 - 272630784 - Type: - - - - - - NO - 1 - - - - 12 - {{14, 320}, {292, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - - 3 - 2 - 0 - NO - - - - 268 - {{103, 331}, {203, 39}} - - YES - - -1805647871 - 272629760 - - - - YES - - - - NO - 1 - - - - 268 - {{15, 353}, {83, 17}} - - YES - - 68157504 - 272630784 - Description: - - - - - - NO - 1 - - - - 268 - {{114, 6}, {96, 32}} - - YES - - 67108864 - 134217728 - Apply - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {{1, 1}, {324, 428}} - - - - {{297, 16}, {326, 444.1875}} - - {0, 0} - - 67108864 - 0 - Cheat Settings - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{76, 408}, {190, 18}} - - YES - - -2080374784 - 0 - Enable Cheats - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 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 - - - {{20, 410}, {50, 50}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 265 - {{75, 432}, {168, 28}} - - YES - - 69206017 - 272764928 - TmFtZToKU2VyaWFsOg - - - - - - NO - 1 - - - - 1292 - {{29, 419}, {32, 32}} - - 28682 - 100 - - - {640, 480} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - CheatManagerWindow - YES - - - CheatWindowDelegate - - - - 256 - - YES - - - 292 - {{17, 4}, {294, 14}} - - YES - - 68157504 - 138548224 - This list only shows the first 100 search results. - - .HelveticaNeueDeskInterface-Bold - 11 - 3344 - - - - - - NO - 1 - - - - 1292 - {{214, 220}, {16, 16}} - - 28938 - 100 - - - - 268 - {{133, 369}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - Unsigned - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - YES - Signed (NOT IMPLEMENTED) - - 2147483647 - - - _popUpItemAction: - - - - YES - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{59, 374}, {60, 14}} - - YES - - 68157504 - 272761856 - Sign Type: - - - - - - NO - 1 - - - - 268 - {{59, 398}, {72, 14}} - - YES - - 68157504 - 272761856 - Search Style: - - - - - - NO - 1 - - - - 268 - {{133, 393}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - Exact Value - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Comparative - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{0, 237}, {328, 134}} - - NSView - - - - 268 - {{233, 213}, {80, 28}} - - YES - - 67108864 - 134348800 - Reset - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{59, 222}, {150, 14}} - - YES - - 68157504 - 272761856 - - - Search not started. - - - - - NO - 1 - - - - 268 - {{17, 222}, {45, 14}} - - YES - - 68157504 - 272761856 - Found: - - - - - - NO - 1 - - - - 284 - - YES - - - 2304 - - YES - - - 256 - {286, 176} - - YES - NO - YES - - - 256 - {286, 17} - - - - - - -2147483392 - {{224, 0}, {16, 17}} - - - YES - - 102 - 40 - 1000 - - 75497536 - 2048 - Address - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 69206081 - 137216 - Text Cell - - Monaco - 11 - 16 - - - - - - 3 - YES - - - - 178 - 40 - 1000 - - 75497536 - 2048 - Value - - - - - - 69206081 - 137216 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 14 - 1916796928 - - - 3 - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {286, 176}} - - - - - 4 - YES - - - - -2147483392 - {{224, 17}, {15, 102}} - - NO - _doScroller: - - - _doScroller: - 0.94863013698630139 - - - - -2147483392 - {{1, 294}, {338, 15}} - - NO - _doScroller: - - 1 - - _doScroller: - 0.93888888888888888 - - - - 2304 - - YES - - - {{1, 0}, {286, 17}} - - - - YES - - - {{20, 20}, {288, 194}} - - - 133682 - - - - - QSAAAEEgAABBgAAAQYAAAA - 0.25 - 4 - 1 - - - {328, 434} - NSView - - - - {328, 397} - {0, 397} - {328, 397} - 2 - 0.0 - 0.0 - - - - - 15 - 2 - {{235, 143}, {500, 416}} - 1685585920 - Cheat Database - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - {500, 272} - - - 256 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 256 - {500, 287} - - YES - NO - YES - - - 256 - {500, 17} - - - - - - -2147483392 - {{224, 0}, {16, 17}} - - - - YES - - 25 - 25 - 25 - - 75497536 - 2048 - - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 67108864 - 134217728 - - - - 1215582464 - 2 - - - - - 200 - 25 - - YES - - - - 464 - 40 - 1000 - - 75497536 - 2048 - Description - - - - - - 69206017 - 135168 - Text Cell - - - - - - 3 - YES - YES - - - - 3 - 2 - - - 39 - 1925185536 - - - 1 - 4 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {500, 287}} - - - - - 4 - YES - - - - -2147483392 - {{224, 17}, {15, 102}} - - NO - _doScroller: - - - _doScroller: - 0.94773519163763065 - - - - -2147483392 - {{1, 249}, {568, 15}} - - NO - _doScroller: - - 1 - - _doScroller: - 0.99206349206349209 - - - - 2304 - - YES - - - {{1, 0}, {500, 17}} - - - - YES - - - - {{-1, 57}, {502, 305}} - - - 133682 - - - - - QSAAAEEgAABCJAAAQiQAAA - 0.25 - 4 - 1 - - - - 268 - {{17, 370}, {120, 14}} - - YES - - 68157504 - 272761856 - R4 Cheats Database: - - - - - - NO - 1 - - - - 268 - {{17, 392}, {63, 14}} - - YES - - 68157504 - 272761856 - ROM Title: - - - - - - NO - 1 - - - - 292 - {{14, 12}, {114, 32}} - - YES - - 67108864 - 134217728 - Select All - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 292 - {{128, 12}, {114, 32}} - - YES - - 67108864 - 134217728 - Select None - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 289 - {{390, 12}, {96, 32}} - - 1 - YES - - 67108864 - 134217728 - Add - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 289 - {{294, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - - 265 - {{378, 370}, {42, 14}} - - YES - - 68157504 - 272761856 - Found: - - - - - - NO - 1 - - - - 268 - {{139, 370}, {237, 14}} - - YES - - 70254657 - 272765952 - - - Database file - - - - - NO - 1 - - - - 265 - {{422, 370}, {61, 14}} - - YES - - 70254657 - 272765952 - - - Count - - - - - NO - 1 - - - - 268 - {{82, 392}, {401, 14}} - - YES - - 70254657 - 272765952 - - - ROM title - - - - - NO - 1 - - - {500, 416} - - {{0, 0}, {1920, 1178}} - {500, 294} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - - 268 - - YES - - - 268 - {{233, 54}, {80, 28}} - - YES - - 67108864 - 134348800 - Search - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{20, 59}, {210, 19}} - - YES - - 342884416 - 268567552 - - Search value - - YES - 1 - - - - 0 - 0 - search - - _searchFieldSearch: - - 138690560 - 0 - - 400 - 75 - - - 0 - 0 - clear - - YES - - YES - - YES - AXDescription - NSAccessibilityEncodedAttributesValueType - - - YES - cancel - - - - - - _searchFieldCancel: - - 138690560 - 0 - - 400 - 75 - - 255 - BgAAAA - - NO - 1 - - - - 268 - {{17, 86}, {294, 14}} - - YES - - 67108864 - 272760832 - Enter a search value, and then click Search. - - - - - - NO - 1 - - - - 268 - {{17, 100}, {294, 14}} - - YES - - 67108864 - 272760832 - Search for an exact value. - - - - - - NO - 1 - - - {328, 134} - NSView - - - - 268 - - YES - - - 268 - {{17, 86}, {294, 14}} - - YES - - 67108864 - 272760832 - Click Start Search to begin a comparative search. - - - - - - NO - 1 - - - - 268 - {{17, 100}, {294, 14}} - - YES - - 67108864 - 272760832 - Start a comparative search. - - - - - - NO - 1 - - - - 268 - {{116, 47}, {96, 28}} - - YES - - 67108864 - 134348800 - Start Search - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {328, 134} - NSView - - - - 268 - - YES - - - 268 - {{17, 72}, {294, 28}} - - YES - - 67108864 - 272760832 - Click the appropriate button based on how the target value is changing. - - - - - - NO - 1 - - - - 268 - {{17, 100}, {294, 14}} - - YES - - 67108864 - 272760832 - How is the value changing? - - - - - - NO - 1 - - - - 268 - {{163, 13}, {150, 28}} - - 1 - YES - - 67108864 - 134348800 - Value is now lower - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{163, 40}, {150, 28}} - - YES - - 67108864 - 134348800 - Value is now higher - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 13}, {150, 28}} - - 3 - YES - - 67108864 - 134348800 - Value did change - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{15, 40}, {150, 28}} - - 2 - YES - - 67108864 - 134348800 - Value is unchanged - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - {328, 134} - NSView - - - - 301 - - YES - - - 268 - {{197, 191}, {109, 32}} - - YES - - 67108864 - 134217728 - Write Once - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{17, 20}, {286, 42}} - - YES - - 67108864 - 272760832 - Note: Enabling this cheat freezes the value in memory. If you only want to change a value without actually freezing it in memory, click Write Once. - - - - - - NO - 1 - - - - 268 - {{17, 262}, {128, 17}} - - YES - - 68157504 - 272630784 - Search for Address: - - - - - - NO - 1 - - - - 265 - {{149, 257}, {27, 27}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 160 - - - - 400 - 75 - - NO - - - - 268 - {{79, 230}, {38, 17}} - - YES - - 68157504 - 71304192 - 0x02 - - Monaco - 13 - 16 - - - - - - NO - 1 - - - - 268 - {{67, 198}, {128, 22}} - - YES - - -1804599231 - -1874852864 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximumFractionDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - -∞ - - - +∞ - - - - #0 - #0 - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - - 268 - {{17, 201}, {45, 17}} - - YES - - 68157504 - 272630784 - Value: - - - - - - NO - 1 - - - - 268 - {{118, 228}, {77, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 231}, {60, 17}} - - YES - - 68157504 - 272630784 - Address: - - - - - - NO - 1 - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {190, 78}} - - YES - NO - 4 - 1 - - YES - - 67108864 - 0 - 1 Byte [0 - 255] - - - 1 - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - 2 Bytes [0 - 65536] - - - 2 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {480, 166}} + + + + {{17, 56}, {482, 182}} + + {0, 0} + + 67108864 + 0 + GPU Layers + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{406, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{310, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 246}, {482, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + {516, 283} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{235, 319}, {350, 240}} + 1685586944 + InputSettingsPaddleController + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 203}, {316, 17}} + + YES + + 70254657 + 272634880 + + + Device Info Summary + + + + + NO + 1 + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{195.08984375, 16}, {38, 17}} + + _NS:4068 + YES + + 68157504 + -2076175360 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + negativeFormat + negativeInfinitySymbol + negativePrefix + nilSymbol + positiveFormat + positiveInfinitySymbol + positivePrefix + zeroSymbol + + + YES + + + + # + -∞ + - + + # + +∞ + + + 0 + + + # + # + + + + 0 + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + %d + _NS:4068 + + + + + NO + 1 + + + + 268 + {{235, 11}, {19, 27}} + + _NS:4123 + YES + + -2146697184 + 0 + _NS:4123 + + 1 + -20 + 20 + 1 + YES + + NO + + + + 268 + {{67, 16}, {127, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + Paddle Adjustment: + + _NS:4068 + + + + + NO + 1 + + + {{1, 1}, {314, 46}} + + + + {{17, 56}, {316, 62}} + + {0, 0} + + 67108864 + 0 + Digital Input Settings + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{240, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{84, 10}, {144, 21}} + + _NS:700 + YES + + -2080374784 + 0 + + _NS:700 + + 20 + 2 + 10 + 0.0 + 0 + 1 + NO + NO + + NO + + + + 268 + {{15, 15}, {68, 11}} + + _NS:4068 + YES + + 68157504 + 71566336 + Less Sensitive + + _NS:4068 + + + + + NO + 1 + + + + 268 + {{229, 15}, {70, 11}} + + _NS:4068 + YES + + 68157504 + 4457472 + More Sensitive + + _NS:4068 + + + + + NO + 1 + + + {{1, 1}, {314, 39}} + + _NS:21 + + + {{17, 122}, {316, 55}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Analog Input Settings + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{17, 185}, {316, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + • This is an analog input. + + _NS:4068 + + + + + NO + 1 + + + + 268 + {{17, 185}, {316, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + • This is a digital input. + + _NS:4068 + + + + + NO + 1 + + + {350, 240} + _NS:122 + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + NO + + + 1 + 2 + {{235, 244}, {305, 315}} + 1685585920 + Internal Firmware Preferences + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{119, 276}, {166, 22}} + + YES + + -1804599231 + 272630784 + + + Enter a nickname... + + YES + + + + NO + 1 + + + + 268 + {{119, 222}, {166, 44}} + + YES + + -1805647871 + 272629760 + + + Enter a message... + + YES + + + + NO + 1 + + + + 268 + {{17, 278}, {97, 17}} + + YES + + 68157504 + 71304192 + Nickname: + + + + + + NO + 1 + + + + 268 + {{17, 246}, {97, 17}} + + YES + + 68157504 + 71304192 + Message: + + + + + + NO + 1 + + + + 268 + {{12, 196}, {102, 17}} + + YES + + 68157504 + 71304192 + Favorite Color: + + + + + + NO + 1 + + + + 268 + {{17, 154}, {97, 17}} + + YES + + 68157504 + 71304192 + Birthday: + + + + + + NO + 1 + + + + 268 + {{17, 126}, {97, 17}} + + YES + + 68157504 + 71304192 + Language: + + + + + + NO + 1 + + + + 268 + {{119, 152}, {169, 27}} + + YES + + 71303168 + 0 + + 330548400 + + + + 0.0 + 224 + + + + NO + + + + 268 + {{116, 120}, {172, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + English + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + Japanese + + 2147483647 + + + _popUpItemAction: + + + + + + French + + 2147483647 + + + _popUpItemAction: + 2 + + + + + German + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Italian + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Spanish + + 2147483647 + + + _popUpItemAction: + 5 + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{116, 190}, {172, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Gray + + 2147483647 + 1 + + NSImage + ColorSwatch_Gray_16x16 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Brown + + 2147483647 + + NSImage + ColorSwatch_Brown_16x16 + + + + _popUpItemAction: + 1 + + + + + Red + + 2147483647 + + NSImage + ColorSwatch_Red_16x16 + + + + _popUpItemAction: + 2 + + + + + Pink + + 2147483647 + + NSImage + ColorSwatch_Pink_16x16 + + + + _popUpItemAction: + 3 + + + + + Orange + + 2147483647 + + NSImage + ColorSwatch_Orange_16x16 + + + + _popUpItemAction: + 4 + + + + + Yellow + + 2147483647 + + NSImage + ColorSwatch_Yellow_16x16 + + + + _popUpItemAction: + 5 + + + + + Lime Green + + 2147483647 + + NSImage + ColorSwatch_LimeGreen_16x16 + + + + _popUpItemAction: + 6 + + + + + Green + + 2147483647 + + NSImage + ColorSwatch_Green_16x16 + + + + _popUpItemAction: + 7 + + + + + Dark Green + + 2147483647 + + NSImage + ColorSwatch_DarkGreen_16x16 + + + + _popUpItemAction: + 8 + + + + + Sea Green + + 2147483647 + + NSImage + ColorSwatch_SeaGreen_16x16 + + + + _popUpItemAction: + 9 + + + + + Turquoise + + 2147483647 + + NSImage + ColorSwatch_Turquoise_16x16 + + + + _popUpItemAction: + 10 + + + + + Blue + + 2147483647 + + NSImage + ColorSwatch_Blue_16x16 + + + + _popUpItemAction: + 11 + + + + + Dark Blue + + 2147483647 + + NSImage + ColorSwatch_DarkBlue_16x16 + + + + _popUpItemAction: + 12 + + + + + Dark Purple + + 2147483647 + + NSImage + ColorSwatch_DarkPurple_16x16 + + + + _popUpItemAction: + 13 + + + + + Violet + + 2147483647 + + NSImage + ColorSwatch_Violet_16x16 + + + + _popUpItemAction: + 14 + + + + + Magenta + + 2147483647 + + NSImage + ColorSwatch_Magenta_16x16 + + + + _popUpItemAction: + 15 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 56}, {271, 56}} + + YES + + 67108864 + 272760832 + Note: These settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. + + + + + + NO + 1 + + + + 268 + {{104, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + OK + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + {305, 315} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 11 + 2 + {{702, 407}, {700, 405}} + 1685586944 + Game Data Migration Assistant + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {700, 250} + + + 256 + + YES + + + 268 + {{17, 351}, {666, 34}} + + YES + + 67108864 + 272629760 + Game data from previous versions of DeSmuME were found. Would you like to migrate your previous game data to work with this version? + + + + + + NO + 1 + + + + 268 + {{17, 351}, {666, 34}} + + YES + + 67108864 + 272629760 + All of your game data is up to date. + + + + + + NO + 1 + + + + 289 + {{362, 12}, {162, 32}} + + 2 + YES + + 67108864 + 134217728 + Migrate By Moving + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 289 + {{200, 12}, {162, 32}} + + YES + + 67108864 + 134217728 + Don't Migrate + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 315}, {666, 28}} + + YES + + 67108864 + 272633856 + Game data from previous versions may not be fully compatible with the current version, especially Save States. Game data migration cannot guarantee that all your old game data will continue to work. + + + + + + NO + 1 + + + + 268 + {{17, 315}, {666, 28}} + + YES + + 67108864 + 272633856 + All of your previous game data already exists in this version of DeSmuME. No migration is needed. + + + + + + NO + 1 + + + + 292 + {{18, 21}, {182, 18}} + + YES + + 67108864 + 0 + Do not ask on startup + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 289 + {{524, 12}, {162, 32}} + + 1 + YES + + 67108864 + 134217728 + Migrate By Copying + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 274 + + YES + + + 2304 + + YES + + + 256 + {700, 229} + + _NS:1718 + YES + NO + YES + + + 256 + {700, 17} + + _NS:1720 + + + + + -2147483392 + {{224, 0}, {16, 17}} + + _NS:1724 + + + YES + + FileNameColumn + 375 + 50 + 5000 + + 75497536 + 2048 + File Name + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 67108864 + 131072 + File Name + + _NS:1912 + + 1211912448 + 2 + + + + + 200 + 25 + + 3 + YES + + + + FileKindColumn + 135 + 40 + 1000 + + 75497536 + 2048 + Kind + + + + + + 337641536 + 133120 + Text Cell + + + + + + 3 + YES + + + + FileDateModifiedColumn + 181 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Date Modified + + + + + + 337641536 + 133120 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 17 + 1656750080 + + + 1 + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {700, 229}} + + + _NS:1716 + + + 4 + + + + -2147483392 + {{224, 17}, {15, 102}} + + _NS:1741 + NO + + _doScroller: + 0.92307692307692313 + + + + -2147483392 + {{1, 197}, {700, 15}} + + _NS:1743 + NO + 1 + + _doScroller: + 0.98176718092566617 + + + + 2304 + + YES + + + {{1, 0}, {700, 17}} + + + _NS:1721 + + + + + {{-1, 60}, {702, 247}} + + + _NS:1714 + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + {700, 405} + + {{0, 0}, {1920, 1177}} + {700, 272} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + FileMigrationDelegate + + + 1 + 2 + {{157, 261}, {380, 200}} + 1685586944 + ROM Save File Migration + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 112}, {346, 68}} + + YES + + 67108864 + 272629760 + This ROM's save file has not been created yet, but there is a save file with this ROM that has the same file name. Would you like to migrate it to work with DeSmuME? + + + + + + NO + 1 + + + + 268 + {{270, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + Migrate + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{144, 12}, {126, 32}} + + YES + + 67108864 + 134217728 + Don't Migrate + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 268 + {{17, 48}, {346, 56}} + + YES + + 67108864 + 272633856 + Migrating the ROM save file will move it to DeSmuME's game data folder. If you do not migrate the save file now, a new file will be created instead. This will be like starting the ROM for the first time. + + + + + + NO + 1 + + + {380, 200} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 1 + 2 + {{157, 298}, {335, 163}} + 1685586944 + Save State + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{17, 109}, {301, 34}} + + YES + + 67108864 + 272629760 + Would you like to save the emulation state before closing? + + + + + + NO + 1 + + + + 268 + {{220, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + Save + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 268 + {{114, 12}, {106, 32}} + + 2 + YES + + 67108864 + 134217728 + Don't Save + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{17, 59}, {301, 42}} + + YES + + 67108864 + 272633856 + If you haven't already saved using this ROM's save, then not saving the emulation state now will cause any unsaved changes to be lost. + + + + + + NO + 1 + + + + 268 + {{18, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + {335, 163} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 7 + 2 + {{235, 88}, {640, 480}} + 1685586944 + Cheat Manager + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 256 + {270, 335} + + YES + NO + YES + + + 256 + {270, 17} + + + + + + -2147483392 + {{256, 0}, {16, 17}} + + + + YES + + 20 + 20 + 20 + + 75497536 + 2048 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 67108864 + 0 + + + + 1215582464 + 2 + + + + + 200 + 25 + + YES + + + + 36 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Type + + + + + + 134217728 + 33554432 + 0 + 0 + 0 + NO + + + + cheatType + YES + compare: + + + + 205 + 10 + 3.4028234663852886e+38 + + 75497536 + 2048 + Description + + + + + + 337641472 + 4325632 + Text Cell + + + + + + 3 + YES + YES + + + + 3 + 2 + + + 42 + 1925185536 + + + 1 + + YES + + + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {270, 335}} + + + + + 4 + + + + 2304 + + YES + + + {{1, 0}, {270, 17}} + + + + + + + -2147483392 + {{256, 17}, {15, 306}} + + NO + + _doScroller: + 0.99689440993788825 + + + + -2147483392 + {{1, 323}, {270, 15}} + + NO + 1 + + _doScroller: + 0.99630996309963105 + + + + {{20, 49}, {272, 353}} + + + 133682 + + + + + QSAAAEEgAABCMAAAQjAAAA + 0.25 + 4 + 1 + + + + 268 + {{113, 12}, {185, 32}} + + YES + + 67108864 + 134217728 + View Cheat Database... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{47, 19}, {28, 23}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 162 + + NSImage + NSRemoveTemplate + + + + 400 + 75 + + NO + + + + 268 + {{20, 19}, {28, 23}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 162 + + NSImage + NSAddTemplate + + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{100, 372}, {209, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + Internal Cheat + + 1048576 + 2147483647 + 1 + + NSImage + Icon_DeSmuME_32x32 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Action Replay + + 1048576 + 2147483647 + + NSImage + Icon_ActionReplay_32x32 + + + + _popUpItemAction: + 1 + + + + + + 1 + YES + YES + 2 + + NO + + + + 301 + {{2, 33}, {320, 290}} + + NSView + + + + 268 + {{16, 402}, {130, 18}} + + YES + + 67108864 + 0 + Enable this cheat + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 378}, {83, 17}} + + YES + + 68157504 + 272630784 + Type: + + + + + + NO + 1 + + + + 12 + {{14, 320}, {292, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{103, 331}, {203, 39}} + + YES + + -1805647871 + 272629760 + + + + YES + + + + NO + 1 + + + + 268 + {{15, 353}, {83, 17}} + + YES + + 68157504 + 272630784 + Description: + + + + + + NO + 1 + + + + 268 + {{114, 6}, {96, 32}} + + YES + + 67108864 + 134217728 + Apply + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {{1, 1}, {324, 428}} + + + + {{297, 16}, {326, 444.1875}} + + {0, 0} + + 67108864 + 0 + Cheat Settings + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{76, 408}, {190, 18}} + + YES + + -2080374784 + 0 + Enable Cheats + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 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 + + + {{20, 410}, {50, 50}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 265 + {{75, 432}, {168, 28}} + + YES + + 69206017 + 272764928 + TmFtZToKU2VyaWFsOg + + + + + + NO + 1 + + + + 1292 + {{29, 419}, {32, 32}} + + 28682 + 100 + + + {640, 480} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + CheatManagerWindow + YES + + + CheatWindowDelegate + + + + 256 + + YES + + + 292 + {{17, 4}, {294, 14}} + + YES + + 68157504 + 138548224 + This list only shows the first 100 search results. + + LucidaGrande-Bold + 11 + 3344 + + + + + + NO + 1 + + + + 1292 + {{214, 220}, {16, 16}} + + 28938 + 100 + + + + 268 + {{133, 369}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + Unsigned + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + YES + Signed (NOT IMPLEMENTED) + + 2147483647 + + + _popUpItemAction: + + + + YES + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{45, 374}, {86, 14}} + + YES + + 68157504 + 71435264 + Sign Type: + + + + + + NO + 1 + + + + 268 + {{45, 398}, {86, 14}} + + YES + + 68157504 + 71435264 + Search Style: + + + + + + NO + 1 + + + + 268 + {{133, 393}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + Exact Value + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Comparative + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{0, 237}, {328, 134}} + + NSView + + + + 268 + {{233, 213}, {80, 28}} + + YES + + 67108864 + 134348800 + Reset + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{59, 222}, {150, 14}} + + YES + + 68157504 + 272761856 + + + Search not started. + + + + + NO + 1 + + + + 268 + {{17, 222}, {45, 14}} + + YES + + 68157504 + 272761856 + Found: + + + + + + NO + 1 + + + + 284 + + YES + + + 2304 + + YES + + + 256 + {286, 176} + + YES + NO + YES + + + 256 + {286, 17} + + + + + + -2147483392 + {{224, 0}, {16, 17}} + + + + YES + + 102 + 40 + 1000 + + 75497536 + 2048 + Address + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 69206081 + 137216 + Text Cell + + Monaco + 11 + 16 + + + + + + 3 + YES + + + + 178 + 40 + 1000 + + 75497536 + 2048 + Value + + + + + + 69206081 + 137216 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 14 + 1916796928 + + + 3 + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {286, 176}} + + + + + 4 + + + + 2304 + + YES + + + {{1, 0}, {286, 17}} + + + + + + + -2147483392 + {{224, 17}, {15, 102}} + + NO + + _doScroller: + 0.94863013698630139 + + + + -2147483392 + {{1, 294}, {338, 15}} + + NO + 1 + + _doScroller: + 0.93888888888888888 + + + + {{20, 20}, {288, 194}} + + + 133682 + + + + + QSAAAEEgAABBgAAAQYAAAA + 0.25 + 4 + 1 + + + {328, 434} + NSView + + + + {328, 397} + {0, 397} + {328, 397} + 2 + 0.0 + 0.0 + + + + + 15 + 2 + {{235, 143}, {500, 416}} + 1685585920 + Cheat Database + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + {500, 272} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 256 + {500, 287} + + YES + NO + YES + + + 256 + {500, 17} + + + + + + -2147483392 + {{224, 0}, {16, 17}} + + + + YES + + 25 + 25 + 25 + + 75497536 + 2048 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 67108864 + 134217728 + + + + 1215582464 + 2 + + + + + 200 + 25 + + YES + + + + 464 + 40 + 1000 + + 75497536 + 2048 + Description + + + + + + 69206017 + 135168 + Text Cell + + + + + + 3 + YES + YES + + + + 3 + 2 + + + 39 + 1925185536 + + + 1 + 4 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {500, 287}} + + + + + 4 + + + + -2147483392 + {{224, 17}, {15, 102}} + + NO + + _doScroller: + 0.94773519163763065 + + + + -2147483392 + {{1, 249}, {568, 15}} + + NO + 1 + + _doScroller: + 0.99206349206349209 + + + + 2304 + + YES + + + {{1, 0}, {500, 17}} + + + + + + + {{-1, 57}, {502, 305}} + + + 133682 + + + + + QSAAAEEgAABCJAAAQiQAAA + 0.25 + 4 + 1 + + + + 268 + {{17, 370}, {125, 14}} + + YES + + 68157504 + 272761856 + R4 Cheats Database: + + + + + + NO + 1 + + + + 268 + {{17, 392}, {68, 14}} + + YES + + 68157504 + 272761856 + ROM Title: + + + + + + NO + 1 + + + + 292 + {{14, 12}, {114, 32}} + + YES + + 67108864 + 134217728 + Select All + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 292 + {{128, 12}, {114, 32}} + + YES + + 67108864 + 134217728 + Select None + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 289 + {{390, 12}, {96, 32}} + + 1 + YES + + 67108864 + 134217728 + Add + + + -2038284288 + 129 + + DQ + 200 + 25 + + NO + + + + 289 + {{294, 12}, {96, 32}} + + YES + + 67108864 + 134217728 + Cancel + + + -2038284288 + 129 + + Gw + 200 + 25 + + NO + + + + 265 + {{372, 370}, {48, 14}} + + YES + + 68157504 + 71435264 + Found: + + + + + + NO + 1 + + + + 268 + {{144, 370}, {232, 14}} + + YES + + 70254657 + 272765952 + + + Database file + + + + + NO + 1 + + + + 265 + {{422, 370}, {61, 14}} + + YES + + 70254657 + 4330496 + + + Count + + + + + NO + 1 + + + + 268 + {{87, 392}, {396, 14}} + + YES + + 70254657 + 272765952 + + + ROM title + + + + + NO + 1 + + + {500, 416} + + {{0, 0}, {1920, 1178}} + {500, 294} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + + 268 + + YES + + + 268 + {{233, 54}, {80, 28}} + + YES + + 67108864 + 134348800 + Search + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{20, 59}, {210, 19}} + + YES + + 342884416 + 268567552 + + Search value + + YES + 1 + + + + 0 + 0 + search + + _searchFieldSearch: + + 138690560 + 0 + + 400 + 75 + + + 0 + 0 + clear + + YES + + YES + + YES + AXDescription + NSAccessibilityEncodedAttributesValueType + + + YES + cancel + + + + + + _searchFieldCancel: + + 138690560 + 0 + + 400 + 75 + + 255 + + NO + 1 + + + + 268 + {{17, 86}, {294, 14}} + + YES + + 67108864 + 272760832 + Enter a search value, and then click Search. + + + + + + NO + 1 + + + + 268 + {{17, 100}, {294, 14}} + + YES + + 67108864 + 272760832 + Search for an exact value. + + + + + + NO + 1 + + + {328, 134} + NSView + + + + 268 + + YES + + + 268 + {{17, 86}, {294, 14}} + + YES + + 67108864 + 272760832 + Click Start Search to begin a comparative search. + + + + + + NO + 1 + + + + 268 + {{17, 100}, {294, 14}} + + YES + + 67108864 + 272760832 + Start a comparative search. + + + + + + NO + 1 + + + + 268 + {{116, 47}, {96, 28}} + + YES + + 67108864 + 134348800 + Start Search + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {328, 134} + NSView + + + + 268 + + YES + + + 268 + {{17, 72}, {294, 28}} + + YES + + 67108864 + 272760832 + Click the appropriate button based on how the target value is changing. + + + + + + NO + 1 + + + + 268 + {{17, 100}, {294, 14}} + + YES + + 67108864 + 272760832 + How is the value changing? + + + + + + NO + 1 + + + + 268 + {{163, 13}, {150, 28}} + + 1 + YES + + 67108864 + 134348800 + Value is now lower + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{163, 40}, {150, 28}} + + YES + + 67108864 + 134348800 + Value is now higher + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 13}, {150, 28}} + + 3 + YES + + 67108864 + 134348800 + Value did change + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{15, 40}, {150, 28}} + + 2 + YES + + 67108864 + 134348800 + Value is unchanged + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + {328, 134} + NSView + + + + 301 + + YES + + + 268 + {{197, 191}, {109, 32}} + + YES + + 67108864 + 134217728 + Write Once + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{17, 20}, {286, 42}} + + YES + + 67108864 + 272760832 + Note: Enabling this cheat freezes the value in memory. If you only want to change a value without actually freezing it in memory, click Write Once. + + + + + + NO + 1 + + + + 268 + {{17, 262}, {128, 17}} + + YES + + 68157504 + 272630784 + Search for Address: + + + + + + NO + 1 + + + + 265 + {{149, 257}, {27, 27}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 160 + + + + 400 + 75 + + NO + + + + 268 + {{79, 230}, {38, 17}} + + YES + + 68157504 + 71304192 + 0x02 + + Monaco + 13 + 16 + + + + + + NO + 1 + + + + 268 + {{67, 198}, {128, 22}} + + YES + + -1804599231 + -1874852864 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximumFractionDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + -∞ + + + +∞ + + + + #0 + #0 + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + + 268 + {{17, 201}, {45, 17}} + + YES + + 68157504 + 272630784 + Value: + + + + + + NO + 1 + + + + 268 + {{118, 228}, {77, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 268 + {{17, 231}, {60, 17}} + + YES + + 68157504 + 272630784 + Address: + + + + + + NO + 1 + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {190, 78}} + + YES + NO + 4 + 1 + + YES + + 67108864 + 0 + 1 Byte [0 - 255] + + + 1 + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + 2 Bytes [0 - 65536] + + + 2 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -14822,65 +14725,65 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - 3 Bytes [0 - 16777215] - - - 3 - 1211912448 - 0 - - 400 - 75 - - - -2080374784 - 0 - 4 Bytes [0 - 4294967295] - - - 4 - 1211912448 - 0 - - 400 - 75 - - - {190, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + 3 Bytes [0 - 16777215] + + + 3 + 1211912448 + 0 + + 400 + 75 + + + -2080374784 + 0 + 4 Bytes [0 - 4294967295] + + + 4 + 1211912448 + 0 + + 400 + 75 + + + {190, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -14958,364 +14861,359 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 3 - - - - - - - {{1, 1}, {226, 102}} - - - - {{46, 72}, {228, 118}} - - {0, 0} - - 67108864 - 0 - Select Memory Size - - - - - - 1 - 0 - 2 - NO - - - {320, 290} - NSView - - - - 301 - - YES - - - 256 - - YES - - - 2304 - - YES - - - 2322 - - 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 - - - {{0, 125}, {278, 223}} - - - - - - - - - - - YES - - - 166 - - - - 278 - 1 - - - 100674819 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - 4 - - 1 - - - 1 - - 6 - {463, 10000000} - - - YES - NSAllRomanInputSourcesLocaleIdentifier - - - - {{1, 1}, {278, 223}} - - - - - - 4 - YES - - - - -2147483392 - {{231, 1}, {15, 172}} - - NO - _doScroller: - - - _doScroller: - 0.68253968253968256 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 0.97142857142857142 - 0.94565218687057495 - - - {{20, 20}, {280, 225}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 268 - {{17, 253}, {138, 17}} - - YES - - 68157504 - 272630784 - Action Replay Code: - - - - - - NO - 1 - - - {320, 290} - NSView - - - - 301 - - YES - - - 268 - - 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 - - - {{101, 133}, {128, 128}} - - YES - - 134217728 - 33554432 - - NSImage - Icon_CodeBreaker_128x128 - - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{17, 35}, {286, 72}} - - YES - - 67108864 - 138412032 - Code Breaker cheats have not been implemented in this version of DeSmuME. - - .HelveticaNeueDeskInterface-Bold - 20 - 2064 - - - - - - NO - 1 - - - {320, 290} - NSView - - - 7 - 2 - {{235, 256}, {640, 303}} - 1685586944 - SLOT-1 (NDS Slot) Manager - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 152}, {230, 98}} - - YES - NO - 5 - 1 - - YES - - -2080374784 - 0 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 0 - Retail (Auto-detect) - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 3 + + + + + + + {{1, 1}, {226, 102}} + + + + {{46, 72}, {228, 118}} + + {0, 0} + + 67108864 + 0 + Select Memory Size + + + + + + 1 + 0 + 2 + NO + + + {320, 290} + NSView + + + + 301 + + YES + + + 256 + + YES + + + 2304 + + YES + + + 2322 + + 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 + + + {{0, 125}, {278, 223}} + + + + + + + + + + + YES + + + 166 + + + + 278 + 1 + + + 100674819 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + 4 + + 1 + + + 1 + + 6 + {463, 10000000} + + + YES + NSAllRomanInputSourcesLocaleIdentifier + + + + {{1, 1}, {278, 223}} + + + + + + 4 + + + + -2147483392 + {{231, 1}, {15, 172}} + + NO + + _doScroller: + 0.68253968253968256 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 0.97142857142857142 + 0.94565218687057495 + + + {{20, 20}, {280, 225}} + + + 133650 + + + + 0.25 + 4 + 1 + + + + 268 + {{17, 253}, {138, 17}} + + YES + + 68157504 + 272630784 + Action Replay Code: + + + + + + NO + 1 + + + {320, 290} + NSView + + + + 301 + + YES + + + 268 + + 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 + + + {{101, 133}, {128, 128}} + + YES + + 134217728 + 33554432 + + NSImage + Icon_CodeBreaker_128x128 + + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{17, 35}, {286, 72}} + + YES + + 67108864 + 138412032 + Code Breaker cheats have not been implemented in this version of DeSmuME. + + LucidaGrande-Bold + 20 + 2064 + + + + + + NO + 1 + + + {320, 290} + NSView + + + 7 + 2 + {{235, 256}, {640, 303}} + 1685586944 + SLOT-1 (NDS Slot) Manager + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 152}, {230, 98}} + + YES + NO + 5 + 1 + + YES + + -2080374784 + 0 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 0 + Retail (Auto-detect) + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -15392,78 +15290,78 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Retail with NAND Flash - - - 3 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - Standard Retail MC + ROM - - - 4 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 0 - R4 - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {230, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 0 + Retail with NAND Flash + + + 3 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + Standard Retail MC + ROM + + + 4 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 0 + R4 + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {230, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 0 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -15541,2773 +15439,2761 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{15, 93}, {236, 42}} - - YES - - 67108864 - 138543104 - Note: Changes to the SLOT-1 device will only take effect after a ROM is loaded or after the emulator is reset. - - - - - 1 - MCAwIDAAA - - - NO - 1 - - - - 268 - {{49, 16}, {168, 32}} - - YES - - 67108864 - 134217728 - Eject SLOT-1 Device - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{49, 48}, {168, 32}} - - YES - - 67108864 - 134217728 - Reset Nintendo DS - - - -2034876416 - 129 - - - 200 - 25 - - NO - - - - 12 - {{14, 141}, {238, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - - 3 - 2 - 0 - NO - - - {{1, 1}, {266, 260}} - - - - {{17, 16}, {268, 276}} - - {0, 0} - - 67108864 - 0 - SLOT-1 Device Type - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 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 - - - {{14, 16}, {30, 30}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 265 - {{52, 18}, {154, 28}} - - YES - - 69206017 - 272764928 - TmFtZToKU2VyaWFsOg - - - - - - NO - 1 - - - - 1292 - {{11, 14}, {32, 32}} - - 28682 - 100 - - - - 268 - {{205, 17}, {116, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - YES - Actions - - 1048576 - 2147483647 - 1 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Load ROM… - - 2147483647 - - - _popUpItemAction: - - - - - Load Recent ROM - - 1048576 - 2147483647 - - - submenuAction: - - - Load Recent ROM - - YES - - - Clear Menu - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - _NSRecentDocumentsMenu - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - Unload ROM - - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - ROM Info - - 2147483647 - - - _popUpItemAction: - - - - - Reveal ROM in Finder - - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - Import ROM Save File... - - 2147483647 - - - _popUpItemAction: - - - - - Export ROM Save File... - - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - ROM Save Type - - 2147483647 - - - submenuAction: - - - ROM Save Type - - YES - - - Automatic - - 2147483647 - - - _popUpItemAction: - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - -1 - - - - - EEPROM 4Kb - - 2147483647 - - - _popUpItemAction: - 1 - - - - - EEPROM 64Kb - - 2147483647 - - - _popUpItemAction: - 2 - - - - - EEPROM 512Kb - - 2147483647 - - - _popUpItemAction: - 3 - - - - - FRAM 256Kb - - 2147483647 - - - _popUpItemAction: - 4 - - - - - FLASH 2Mb - - 2147483647 - - - _popUpItemAction: - 5 - - - - - FLASH 4Mb - - 2147483647 - - - _popUpItemAction: - 6 - - - - - FLASH 8Mb - - 2147483647 - - - _popUpItemAction: - 7 - - - - - FLASH 16Mb - - 2147483647 - - - _popUpItemAction: - 8 - - - - - FLASH 32Mb - - 2147483647 - - - _popUpItemAction: - 9 - - - - - FLASH 64Mb - - 2147483647 - - - _popUpItemAction: - 10 - - - - - FLASH 128Mb - - 2147483647 - - - _popUpItemAction: - 11 - - - - - FLASH 256Mb - - 2147483647 - - - _popUpItemAction: - 12 - - - - - FLASH 512Mb - - 2147483647 - - - _popUpItemAction: - 13 - - - - - - - - - YES - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {334, 56}} - - - - {{287, 220}, {336, 72}} - - {0, 0} - - 67108864 - 0 - Loaded ROM - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{14, 14}, {304, 42}} - - YES - - 69206017 - 272764928 - - - slot1StatusText - - - - - NO - 1 - - - {{1, 1}, {334, 66}} - - _NS:21 - - - {{287, 16}, {336, 82}} - - _NS:18 - {0, 0} - - 67108864 - 0 - NDS Slot Status - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{226, 6}, {96, 32}} - - YES - - 67108864 - 134217728 - Choose... - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{18, 45}, {298, 18}} - - YES - - 77594689 - 272767744 - - - Directory Path - - YES - - - - NO - 1 - - - - 268 - {{16, 71}, {149, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - Storage Directory Path: - - _NS:4068 - - - - - NO - 1 - - - {{1, 1}, {334, 98}} - - _NS:21 - - - {{287, 102}, {336, 114}} - - _NS:18 - {0, 0} - - 67108864 - 0 - R4 Device Setup - - - - - - 1 - 0 - 2 - NO - - - {640, 303} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - Slot1ManagerWindow - YES - - - 7 - 2 - {{235, 111}, {640, 448}} - 1685586944 - SLOT-2 (GBA Slot) Manager - NSWindow - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - - YES - - - 2304 - - YES - - - 256 - {188, 304} - - _NS:1843 - YES - NO - YES - - - 256 - {188, 17} - - - - - - -2147483392 - {{224, 0}, {16, 17}} - - _NS:1848 - - - YES - - 185 - 40 - 1000 - - 75497536 - 2048 - SLOT-2 Device Type - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 337641536 - 2048 - Text Cell - - - - - - 1 - YES - - - - 3 - 2 - - - 17 - 46137344 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 17}, {188, 304}} - - - _NS:1841 - - - 4 - YES - - - - 2304 - - YES - - - {{1, 0}, {188, 17}} - - - - YES - - - - -2147483392 - {{224, 17}, {15, 102}} - - _NS:1860 - NO - _doScroller: - - - _doScroller: - 0.99723756906077343 - - - - -2147483392 - {{1, 306}, {188.95703125, 15}} - - _NS:1862 - NO - _doScroller: - - 1 - - _doScroller: - 0.9943820224719101 - - - - {{20, 106}, {190, 322}} - - - _NS:1839 - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{3, 4}, {400, 320}} - - _NS:1109 - NSView - - - {{1, 1}, {406, 326}} - - _NS:21 - - - {{215, 102}, {408, 328}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Device Settings - - - - - - 1 - 0 - 0 - NO - - - - 268 - {{530, 12}, {96, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Apply - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 14}, {482, 42}} - - _NS:3939 - YES - - 69206017 - 272760832 - - - slot2StatusText - _NS:3939 - - - - - NO - 1 - - - {{1, 1}, {512, 66}} - - _NS:21 - - - {{17, 16}, {514, 82}} - - _NS:18 - {0, 0} - - 67108864 - 0 - GBA Slot Status - - - - - - 1 - 0 - 2 - NO - - - {640, 448} - _NS:122 - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - Slot2ManagerWindow - NO - - - Slot2WindowDelegate - - - - 268 - - YES - - - 268 - {{17, 152}, {366, 17}} - - _NS:3939 - YES - - 67108864 - 138674176 - This device is unsupported at this time. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{17, 45}, {366, 56}} - - _NS:3939 - YES - - 67108864 - 272760832 - Note: If a game is dependent on having a particular SLOT-2 device loaded, then removing the device while the game is running may cause the game to fail. - - _NS:3939 - - - - - NO - 1 - - - - 268 - {{17, 109}, {366, 56}} - - _NS:3939 - YES - - 67108864 - 272760832 - When a ROM is loading, this setting prevents any SLOT-2 device from being loaded into the GBA slot. If a ROM is already loaded, this setting removes any previously loaded SLOT-2 device. - - _NS:3939 - - - - - NO - 1 - - - - 268 - {{17, 20}, {366, 17}} - - _NS:3939 - YES - - 67108864 - 138674176 - No additional configuration required. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{17, 45}, {366, 56}} - - _NS:3939 - YES - - 67108864 - 272760832 - Note: This is not an actual device. Rather, this setting will automatically select a SLOT-2 device depending on the loaded ROM, and then load the device as the ROM loads. - - _NS:3939 - - - - - NO - 1 - - - - 268 - {{187, 126}, {196, 17}} - - _NS:4068 - YES - - 70254657 - 4199424 - - - SLOT-2 Device Name - _NS:4068 - - - - - NO - 1 - - - - 268 - {{17, 126}, {168, 17}} - - _NS:4068 - YES - - 68157504 - 71304192 - Selected SLOT-2 Device: - - _NS:4068 - - - - - NO - 1 - - - - 268 - {{153, 283}, {230, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - Currently Loaded ROM - - _NS:4068 - - - - - NO - 1 - - - - 12 - {{12, 149}, {376, 5}} - - _NS:2429 - {0, 0} - - 67108864 - 0 - Box - - - - - 3 - 2 - 0 - NO - - - - 268 - {{68, 220}, {32, 32}} - - 28682 - 100 - - - - 265 - {{165, 241}, {218, 34}} - - YES - - 69206017 - 272633856 - TmFtZToKU2VyaWFsOg - - - - - - NO - 1 - - - - 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 - - - {{20, 172}, {128, 128}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{17, 20}, {366, 17}} - - _NS:3939 - YES - - 67108864 - 138674176 - No additional configuration required. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{17, 283}, {366, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - Search for files at this location: - - _NS:4068 - - - - - NO - 1 - - - - 268 - {{17, 251}, {366, 26}} - - _NS:791 - YES - - -2076180416 - 2048 - - _NS:791 - - 109199360 - 129 - - - 400 - 75 - - - Same folder as the loaded ROM - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - Custom folder - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Choose a folder... - - 2147483647 - - - - _popUpItemAction: - 10000 - - - - - YES - YES - - - 2147483647 - - - _popUpItemAction: - - - - - YES - Custom disk image - - 2147483647 - - - _popUpItemAction: - 2 - - - - - Choose a disk image... - - 2147483647 - - - - _popUpItemAction: - 10001 - - - - - - 1 - YES - YES - 2 - - NO - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{17, 286}, {366, 14}} - - _NS:4068 - YES - - 68157504 - 272761856 - Enable rumble for the selected input devices: - - _NS:4068 - - - - - NO - 1 - - - - 268 - - YES - - - 2304 - - YES - - - 256 - - YES - - {358, 156} - - _NS:1843 - YES - NO - YES - - - 256 - {358, 17} - - - - - - -2147483392 - {{224, 0}, {16, 17}} - - _NS:1848 - - - YES - - 30 - 30 - 1000 - - 75497536 - 2048 - - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 68157504 - 1024 - - - _NS:1912 - - 1214533888 - 2 - - - - - 200 - 25 - - YES - - - - 317.5234375 - 40 - 1000 - - 75497536 - 2048 - Input Device - - - - - - 338690112 - 1024 - Text Cell - - - - - - 3 - YES - - - - 3 - 2 - - - 17 - 1386217472 - - - 0 - 15 - 0 - NO - 0 - 1 - - - {{1, 17}, {358, 156}} - - - _NS:1841 - - - 4 - YES - - - - -2147483392 - {{224, 17}, {15, 102}} - - _NS:1860 - NO - _doScroller: - - - _doScroller: - 0.90625 - - - - -2147483392 - {{1, 162}, {358, 15}} - - _NS:1862 - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.97814207650273222 - - - - 2304 - - YES - - - {{1, 0}, {358, 17}} - - - - YES - - - - {{20, 110}, {360, 174}} - - - _NS:1839 - 133682 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{267, 12}, {119, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Test Rumble - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{17, 60}, {366, 42}} - - _NS:3939 - YES - - 67108864 - 272760832 - Note: Rumble will only work for supported games. In addition, you must have a supported input device. To check if the selected input devices support rumble, click Test Rumble. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{142, 113}, {144, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Clear SRAM Path - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{286, 113}, {100, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Choose... - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{20, 149}, {360, 22}} - - _NS:817 - YES - - -2068840383 - 272630784 - - - File Path - _NS:817 - - YES - - - - NO - 1 - - - - 268 - {{17, 179}, {100, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - GBA SRAM File: - - _NS:4068 - - - - - NO - 1 - - - - 12 - {{12, 202}, {376, 5}} - - _NS:2429 - {0, 0} - - 67108864 - 0 - Box - - - - - 3 - 2 - 0 - NO - - - - 268 - {{286, 217}, {100, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Choose... - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{20, 253}, {360, 22}} - - _NS:817 - YES - - -2068840383 - 272630784 - - - File Path - _NS:817 - - YES - - - - NO - 1 - - - - 268 - {{17, 283}, {157, 17}} - - _NS:4068 - YES - - 68157504 - 272630784 - GBA ROM Cartridge File: - - _NS:4068 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - - 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 - - - {{75, 96}, {254, 204}} - - _NS:2165 - YES - - 0 - 33554432 - - NSImage - Image_GuitarGrip - - _NS:2165 - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{127, 12}, {150, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Input Preferences - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - {{17, 60}, {366, 28}} - - _NS:3939 - YES - - 67108864 - 272760832 - This is an input device. You can set up this device through your Input Preferences. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - - 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 - - - {{11, 104}, {360, 136}} - - _NS:2165 - YES - - 67108864 - 33816576 - - NSImage - Image_MemoryExpansionPak - - - _NS:2165 - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{17, 20}, {366, 17}} - - _NS:3939 - YES - - 67108864 - 138674176 - No additional configuration required. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{17, 60}, {366, 28}} - - _NS:3939 - YES - - 67108864 - 272760832 - This is an input device. You can set up this device through your Input Preferences. - - _NS:3939 - - - - - NO - 1 - - - - 268 - {{127, 12}, {150, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Input Preferences - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - - 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 - - - {{87, 96}, {230, 204}} - - _NS:2165 - YES - - 0 - 33554432 - - NSImage - Image_Piano - - _NS:2165 - 0 - 0 - 0 - NO - - NO - YES - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - {{127, 12}, {150, 32}} - - _NS:610 - YES - - 67108864 - 134217728 - Input Preferences - - _NS:610 - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 268 - - 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 - - - {{53, 96}, {297, 204}} - - _NS:2165 - YES - - 0 - 33554432 - - NSImage - Image_PaddleController - - _NS:2165 - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{17, 60}, {366, 28}} - - _NS:3939 - YES - - 67108864 - 272760832 - This is an input device. You can set up this device through your Input Preferences. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - - 268 - - YES - - - 268 - - 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 - - - {{60, 70}, {279, 214}} - - _NS:2165 - YES - - 67108864 - 33816576 - - NSImage - Image_PassME - - - _NS:2165 - 0 - 3 - 0 - NO - - NO - YES - - - - 268 - {{17, 20}, {366, 17}} - - _NS:3939 - YES - - 67108864 - 138674176 - No additional configuration required. - - _NS:3939 - - - - - NO - 1 - - - {400, 320} - _NS:1109 - NSView - - - 279 - 2 - {{230, 19}, {286, 522}} - -461896704 - Emulation Settings - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 32}, {171, 18}} - - 1 - YES - - -2080374784 - 131072 - Advanced Bus-Level Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{16, 12}, {187, 18}} - - 10 - YES - - 67108864 - 131072 - Rigorous 3D Rendering Timing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {250, 58}} - - - - {{17, 428}, {252, 74}} - - {0, 0} - - 67108864 - 0 - Emulation Timing - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 52}, {158, 18}} - - 2 - YES - - 67108864 - 131072 - Use External BIOS Images - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{35, 32}, {120, 18}} - - 3 - YES - - -2080374784 - 131072 - Emulate BIOS SWIs - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{35, 12}, {132, 18}} - - 4 - YES - - 67108864 - 131072 - Patch DelayLoop SWI - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {250, 78}} - - - - {{17, 224}, {252, 94}} - - {0, 0} - - 67108864 - 0 - BIOS Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 32}, {177, 18}} - - 5 - YES - - 67108864 - 131072 - Use External Firmware Image - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 12}, {130, 18}} - - 6 - YES - - 67108864 - 131072 - Boot From Firmware - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 265 - {{176, 54}, {27, 27}} - - YES - - -2080374784 - 134217728 - - - - -2033434624 - 160 - - - - 400 - 75 - - NO - - - - 268 - {{15, 61}, {157, 14}} - - YES - - 68157504 - 272761856 - Configure Internal Firmware: - - - - - - NO - 1 - - - {{1, 1}, {250, 85}} - - - - {{17, 119}, {252, 101}} - - {0, 0} - - 67108864 - 0 - Firmware Configuration - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{66, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - .HelveticaNeueDeskInterface-Regular - 12 - 4880 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 32}, {127, 18}} - - 9 - YES - - 67108864 - 131072 - Use Debug Console - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 12}, {103, 18}} - - YES - - 67108864 - 131072 - Emulate Ensata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {250, 58}} - - - - {{17, 41}, {252, 74}} - - {0, 0} - - 67108864 - 0 - Debugger Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 38}, {145, 38}} - - YES - NO - 2 - 1 - - YES - - -2080374784 - 131072 - Interpreter - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - Dynamic Recompiler - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{15, 93}, {236, 42}} + + YES + + 67108864 + 138543104 + Note: Changes to the SLOT-1 device will only take effect after a ROM is loaded or after the emulator is reset. + + + + + 1 + MCAwIDAAA + + + NO + 1 + + + + 268 + {{49, 16}, {168, 32}} + + YES + + 67108864 + 134217728 + Eject SLOT-1 Device + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{49, 48}, {168, 32}} + + YES + + 67108864 + 134217728 + Reset Nintendo DS + + + -2034876416 + 129 + + + 200 + 25 + + NO + + + + 12 + {{14, 141}, {238, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + {{1, 1}, {266, 260}} + + + + {{17, 16}, {268, 276}} + + {0, 0} + + 67108864 + 0 + SLOT-1 Device Type + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 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 + + + {{14, 16}, {30, 30}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 265 + {{52, 18}, {154, 28}} + + YES + + 69206017 + 272764928 + TmFtZToKU2VyaWFsOg + + + + + + NO + 1 + + + + 1292 + {{11, 14}, {32, 32}} + + 28682 + 100 + + + + 268 + {{205, 17}, {116, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 129 + + + 400 + 75 + + + YES + Actions + + 1048576 + 2147483647 + 1 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Load ROM… + + 2147483647 + + + _popUpItemAction: + + + + + Load Recent ROM + + 1048576 + 2147483647 + + + submenuAction: + + + Load Recent ROM + + YES + + + Clear Menu + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + _NSRecentDocumentsMenu + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + Unload ROM + + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + ROM Info + + 2147483647 + + + _popUpItemAction: + + + + + Reveal ROM in Finder + + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + Import ROM Save File... + + 2147483647 + + + _popUpItemAction: + + + + + Export ROM Save File... + + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + ROM Save Type + + 2147483647 + + + submenuAction: + + + ROM Save Type + + YES + + + Automatic + + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + -1 + + + + + EEPROM 4Kb + + 2147483647 + + + _popUpItemAction: + 1 + + + + + EEPROM 64Kb + + 2147483647 + + + _popUpItemAction: + 2 + + + + + EEPROM 512Kb + + 2147483647 + + + _popUpItemAction: + 3 + + + + + FRAM 256Kb + + 2147483647 + + + _popUpItemAction: + 4 + + + + + FLASH 2Mb + + 2147483647 + + + _popUpItemAction: + 5 + + + + + FLASH 4Mb + + 2147483647 + + + _popUpItemAction: + 6 + + + + + FLASH 8Mb + + 2147483647 + + + _popUpItemAction: + 7 + + + + + FLASH 16Mb + + 2147483647 + + + _popUpItemAction: + 8 + + + + + FLASH 32Mb + + 2147483647 + + + _popUpItemAction: + 9 + + + + + FLASH 64Mb + + 2147483647 + + + _popUpItemAction: + 10 + + + + + FLASH 128Mb + + 2147483647 + + + _popUpItemAction: + 11 + + + + + FLASH 256Mb + + 2147483647 + + + _popUpItemAction: + 12 + + + + + FLASH 512Mb + + 2147483647 + + + _popUpItemAction: + 13 + + + + + + + + + YES + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {334, 56}} + + + + {{287, 220}, {336, 72}} + + {0, 0} + + 67108864 + 0 + Loaded ROM + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{14, 14}, {304, 42}} + + YES + + 69206017 + 272764928 + + + slot1StatusText + + + + + NO + 1 + + + {{1, 1}, {334, 66}} + + _NS:21 + + + {{287, 16}, {336, 82}} + + _NS:18 + {0, 0} + + 67108864 + 0 + NDS Slot Status + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{226, 6}, {96, 32}} + + YES + + 67108864 + 134217728 + Choose... + + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{18, 45}, {298, 18}} + + YES + + 77594689 + 272767744 + + + Directory Path + + YES + + + + NO + 1 + + + + 268 + {{16, 71}, {149, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + Storage Directory Path: + + _NS:4068 + + + + + NO + 1 + + + {{1, 1}, {334, 98}} + + _NS:21 + + + {{287, 102}, {336, 114}} + + _NS:18 + {0, 0} + + 67108864 + 0 + R4 Device Setup + + + + + + 1 + 0 + 2 + NO + + + {640, 303} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + Slot1ManagerWindow + YES + + + 7 + 2 + {{235, 111}, {640, 448}} + 1685586944 + SLOT-2 (GBA Slot) Manager + NSWindow + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + + YES + + + 2304 + + YES + + + 256 + {188, 304} + + _NS:1843 + YES + NO + YES + + + 256 + {188, 17} + + + + + + -2147483392 + {{224, 0}, {16, 17}} + + _NS:1848 + + + YES + + 185 + 40 + 1000 + + 75497536 + 2048 + SLOT-2 Device Type + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 337641536 + 2048 + Text Cell + + + + + + 1 + YES + + + + 3 + 2 + + + 17 + 46137344 + + + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {188, 304}} + + + _NS:1841 + + + 4 + + + + 2304 + + YES + + + {{1, 0}, {188, 17}} + + + + + + + -2147483392 + {{224, 17}, {15, 102}} + + _NS:1860 + NO + + _doScroller: + 0.99723756906077343 + + + + -2147483392 + {{1, 306}, {188.95703125, 15}} + + _NS:1862 + NO + 1 + + _doScroller: + 0.9943820224719101 + + + + {{20, 106}, {190, 322}} + + + _NS:1839 + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{3, 4}, {400, 320}} + + _NS:1109 + NSView + + + {{1, 1}, {406, 326}} + + _NS:21 + + + {{215, 102}, {408, 328}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Device Settings + + + + + + 1 + 0 + 0 + NO + + + + 268 + {{530, 12}, {96, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Apply + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 14}, {482, 42}} + + _NS:3939 + YES + + 69206017 + 272760832 + + + slot2StatusText + _NS:3939 + + + + + NO + 1 + + + {{1, 1}, {512, 66}} + + _NS:21 + + + {{17, 16}, {514, 82}} + + _NS:18 + {0, 0} + + 67108864 + 0 + GBA Slot Status + + + + + + 1 + 0 + 2 + NO + + + {640, 448} + _NS:122 + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + Slot2ManagerWindow + NO + + + Slot2WindowDelegate + + + + 268 + + YES + + + 268 + {{17, 152}, {366, 17}} + + _NS:3939 + YES + + 67108864 + 138674176 + This device is unsupported at this time. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{17, 45}, {366, 56}} + + _NS:3939 + YES + + 67108864 + 272760832 + Note: If a game is dependent on having a particular SLOT-2 device loaded, then removing the device while the game is running may cause the game to fail. + + _NS:3939 + + + + + NO + 1 + + + + 268 + {{17, 109}, {366, 56}} + + _NS:3939 + YES + + 67108864 + 272760832 + When a ROM is loading, this setting prevents any SLOT-2 device from being loaded into the GBA slot. If a ROM is already loaded, this setting removes any previously loaded SLOT-2 device. + + _NS:3939 + + + + + NO + 1 + + + + 268 + {{17, 20}, {366, 17}} + + _NS:3939 + YES + + 67108864 + 138674176 + No additional configuration required. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{17, 45}, {366, 56}} + + _NS:3939 + YES + + 67108864 + 272760832 + Note: This is not an actual device. Rather, this setting will automatically select a SLOT-2 device depending on the loaded ROM, and then load the device as the ROM loads. + + _NS:3939 + + + + + NO + 1 + + + + 268 + {{187, 126}, {196, 17}} + + _NS:4068 + YES + + 70254657 + 4199424 + + + SLOT-2 Device Name + _NS:4068 + + + + + NO + 1 + + + + 268 + {{17, 126}, {168, 17}} + + _NS:4068 + YES + + 68157504 + 71304192 + Selected SLOT-2 Device: + + _NS:4068 + + + + + NO + 1 + + + + 268 + {{153, 283}, {230, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + Currently Loaded ROM + + _NS:4068 + + + + + NO + 1 + + + + 12 + {{12, 149}, {376, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{68, 220}, {32, 32}} + + 28682 + 100 + + + + 265 + {{165, 241}, {218, 34}} + + YES + + 69206017 + 272633856 + TmFtZToKU2VyaWFsOg + + + + + + NO + 1 + + + + 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 + + + {{20, 172}, {128, 128}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{17, 20}, {366, 17}} + + _NS:3939 + YES + + 67108864 + 138674176 + No additional configuration required. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{17, 283}, {366, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + Search for files at this location: + + _NS:4068 + + + + + NO + 1 + + + + 268 + {{17, 251}, {366, 26}} + + _NS:791 + YES + + -2076180416 + 2048 + + _NS:791 + + 109199360 + 129 + + + 400 + 75 + + + Same folder as the loaded ROM + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + Custom folder + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Choose a folder... + + 2147483647 + + + + _popUpItemAction: + 10000 + + + + + YES + YES + + + 2147483647 + + + _popUpItemAction: + + + + + YES + Custom disk image + + 2147483647 + + + _popUpItemAction: + 2 + + + + + Choose a disk image... + + 2147483647 + + + + _popUpItemAction: + 10001 + + + + + + 1 + YES + YES + 2 + + NO + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{17, 286}, {366, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + Enable rumble for the selected input devices: + + _NS:4068 + + + + + NO + 1 + + + + 268 + + YES + + + 2304 + + YES + + + 256 + + YES + + {358, 156} + + _NS:1843 + YES + NO + YES + + + 256 + {358, 17} + + + + + + -2147483392 + {{224, 0}, {16, 17}} + + _NS:1848 + + + YES + + 30 + 30 + 1000 + + 75497536 + 2048 + + + + 3 + MC4zMzMzMzI5ODU2AA + + + + + 68157504 + 1024 + + + _NS:1912 + + 1214533888 + 2 + + + + + 200 + 25 + + YES + + + + 317.5234375 + 40 + 1000 + + 75497536 + 2048 + Input Device + + + + + + 338690112 + 1024 + Text Cell + + + + + + 3 + YES + + + + 3 + 2 + + + 17 + 1386217472 + + + 0 + 15 + 0 + NO + 0 + 1 + + + {{1, 17}, {358, 156}} + + + _NS:1841 + + + 4 + + + + -2147483392 + {{224, 17}, {15, 102}} + + _NS:1860 + NO + + _doScroller: + 0.90625 + + + + -2147483392 + {{1, 162}, {358, 15}} + + _NS:1862 + NO + 1 + + _doScroller: + 1 + 0.97814207650273222 + + + + 2304 + + YES + + + {{1, 0}, {358, 17}} + + + + + + + {{20, 110}, {360, 174}} + + + _NS:1839 + 133682 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 268 + {{267, 12}, {119, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Test Rumble + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{17, 60}, {366, 42}} + + _NS:3939 + YES + + 67108864 + 272760832 + Note: Rumble will only work for supported games. In addition, you must have a supported input device. To check if the selected input devices support rumble, click Test Rumble. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{142, 113}, {144, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Clear SRAM Path + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{286, 113}, {100, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Choose... + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{20, 149}, {360, 22}} + + _NS:817 + YES + + -2068840383 + 272630784 + + + File Path + _NS:817 + + YES + + + + NO + 1 + + + + 268 + {{17, 179}, {105, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + GBA SRAM File: + + _NS:4068 + + + + + NO + 1 + + + + 12 + {{12, 202}, {376, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{286, 217}, {100, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Choose... + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{20, 253}, {360, 22}} + + _NS:817 + YES + + -2068840383 + 272630784 + + + File Path + _NS:817 + + YES + + + + NO + 1 + + + + 268 + {{17, 283}, {159, 17}} + + _NS:4068 + YES + + 68157504 + 272630784 + GBA ROM Cartridge File: + + _NS:4068 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + + 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 + + + {{75, 96}, {254, 204}} + + _NS:2165 + YES + + 0 + 33554432 + + NSImage + Image_GuitarGrip + + _NS:2165 + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{127, 12}, {150, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Input Preferences + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + {{17, 60}, {366, 28}} + + _NS:3939 + YES + + 67108864 + 272760832 + This is an input device. You can set up this device through your Input Preferences. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + + 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 + + + {{11, 104}, {360, 136}} + + _NS:2165 + YES + + 67108864 + 33816576 + + NSImage + Image_MemoryExpansionPak + + + _NS:2165 + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{17, 20}, {366, 17}} + + _NS:3939 + YES + + 67108864 + 138674176 + No additional configuration required. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{17, 60}, {366, 28}} + + _NS:3939 + YES + + 67108864 + 272760832 + This is an input device. You can set up this device through your Input Preferences. + + _NS:3939 + + + + + NO + 1 + + + + 268 + {{127, 12}, {150, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Input Preferences + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + + 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 + + + {{87, 96}, {230, 204}} + + _NS:2165 + YES + + 0 + 33554432 + + NSImage + Image_Piano + + _NS:2165 + 0 + 0 + 0 + NO + + NO + YES + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + {{127, 12}, {150, 32}} + + _NS:610 + YES + + 67108864 + 134217728 + Input Preferences + + _NS:610 + + -2038284288 + 129 + + + 200 + 25 + + NO + + + + 268 + + 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 + + + {{53, 96}, {297, 204}} + + _NS:2165 + YES + + 0 + 33554432 + + NSImage + Image_PaddleController + + _NS:2165 + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{17, 60}, {366, 28}} + + _NS:3939 + YES + + 67108864 + 272760832 + This is an input device. You can set up this device through your Input Preferences. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + + 268 + + YES + + + 268 + + 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 + + + {{60, 70}, {279, 214}} + + _NS:2165 + YES + + 67108864 + 33816576 + + NSImage + Image_PassME + + + _NS:2165 + 0 + 3 + 0 + NO + + NO + YES + + + + 268 + {{17, 20}, {366, 17}} + + _NS:3939 + YES + + 67108864 + 138674176 + No additional configuration required. + + _NS:3939 + + + + + NO + 1 + + + {400, 320} + _NS:1109 + NSView + + + 279 + 2 + {{230, 19}, {286, 522}} + -461896704 + Emulation Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 32}, {171, 18}} + + 1 + YES + + -2080374784 + 131072 + Advanced Bus-Level Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 12}, {187, 18}} + + 10 + YES + + 67108864 + 131072 + Rigorous 3D Rendering Timing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {250, 58}} + + + + {{17, 428}, {252, 74}} + + {0, 0} + + 67108864 + 0 + Emulation Timing + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 52}, {162, 18}} + + 2 + YES + + 67108864 + 131072 + Use External BIOS Images + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{35, 32}, {127, 18}} + + 3 + YES + + -2080374784 + 131072 + Emulate BIOS SWIs + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{35, 12}, {138, 18}} + + 4 + YES + + 67108864 + 131072 + Patch DelayLoop SWI + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {250, 78}} + + + + {{17, 224}, {252, 94}} + + {0, 0} + + 67108864 + 0 + BIOS Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 32}, {177, 18}} + + 5 + YES + + 67108864 + 131072 + Use External Firmware Image + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 12}, {130, 18}} + + 6 + YES + + 67108864 + 131072 + Boot From Firmware + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 265 + {{176, 54}, {27, 27}} + + YES + + -2080374784 + 134217728 + + + + -2033434624 + 160 + + + + 400 + 75 + + NO + + + + 268 + {{15, 61}, {157, 14}} + + YES + + 68157504 + 272761856 + Configure Internal Firmware: + + + + + + NO + 1 + + + {{1, 1}, {250, 85}} + + + + {{17, 119}, {252, 101}} + + {0, 0} + + 67108864 + 0 + Firmware Configuration + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{62, 18}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + LucidaGrande + 12 + 4880 + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 32}, {128, 18}} + + 9 + YES + + 67108864 + 131072 + Use Debug Console + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 12}, {105, 18}} + + YES + + 67108864 + 131072 + Emulate Ensata + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {250, 58}} + + + + {{17, 41}, {252, 74}} + + {0, 0} + + 67108864 + 0 + Debugger Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 38}, {145, 38}} + + YES + NO + 2 + 1 + + YES + + -2080374784 + 131072 + Interpreter + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + Dynamic Recompiler + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18384,39 +18270,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {145, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {145, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -18494,1055 +18380,1055 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 268 - {{198, 11}, {19, 27}} - - YES - - 67895328 - 0 - - - 12 - 1 - 100 - 1 - YES - - NO - - - - 268 - {{157, 16}, {40, 19}} - - YES - - -1804599231 - 71435264 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - maximum - maximumFractionDigits - minimum - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - -∞ - - - +∞ - - - - #0 - #0 - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - - 268 - {{74, 18}, {78, 14}} - - YES - - 68157504 - 71435264 - Block Size: - - - - - - NO - 1 - - - {{1, 1}, {250, 86}} - - - - {{17, 322}, {252, 102}} - - {0, 0} - - 67108864 - 0 - CPU Emulation Engine - - - - - - 1 - 0 - 2 - NO - - - {286, 522} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - EmulationSettingsPanel - YES - - - - 256 - - YES - - - 268 - {{53, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Apply - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{107, 212}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - Gray - - 2147483647 - 1 - - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Brown - - 2147483647 - - - - _popUpItemAction: - 1 - - - - - Red - - 2147483647 - - - - _popUpItemAction: - 2 - - - - - Pink - - 2147483647 - - - - _popUpItemAction: - 3 - - - - - Orange - - 2147483647 - - - - _popUpItemAction: - 4 - - - - - Yellow - - 2147483647 - - - - _popUpItemAction: - 5 - - - - - Lime Green - - 2147483647 - - - - _popUpItemAction: - 6 - - - - - Green - - 2147483647 - - - - _popUpItemAction: - 7 - - - - - Dark Green - - 2147483647 - - - - _popUpItemAction: - 8 - - - - - Sea Green - - 2147483647 - - - - _popUpItemAction: - 9 - - - - - Turquoise - - 2147483647 - - - - _popUpItemAction: - 10 - - - - - Blue - - 2147483647 - - - - _popUpItemAction: - 11 - - - - - Dark Blue - - 2147483647 - - - - _popUpItemAction: - 12 - - - - - Dark Purple - - 2147483647 - - - - _popUpItemAction: - 13 - - - - - Violet - - 2147483647 - - - - _popUpItemAction: - 14 - - - - - Magenta - - 2147483647 - - - - _popUpItemAction: - 15 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{107, 157}, {136, 22}} - - YES - - -2076180416 - 133120 - - - 109199360 - 129 - - - 400 - 75 - - - English - - 2147483647 - 1 - - - _popUpItemAction: - 1 - - - YES - - OtherViews - - YES - - - Japanese - - 2147483647 - - - _popUpItemAction: - - - - - - French - - 2147483647 - - - _popUpItemAction: - 2 - - - - - German - - 2147483647 - - - _popUpItemAction: - 3 - - - - - Italian - - 2147483647 - - - _popUpItemAction: - 4 - - - - - Spanish - - 2147483647 - - - _popUpItemAction: - 5 - - - - - - 1 - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 45}, {226, 98}} - - YES - - 67108864 - 272760832 - Note: To use this configuration, click Apply, and then reset the emulator. Also, these settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. - - - - - - NO - 1 - - - - 268 - {{110, 186}, {133, 27}} - - YES - - 71303168 - 131072 - - - - 0.0 - 224 - - - - NO - - - - 268 - {{17, 162}, {88, 14}} - - YES - - 68157504 - 71435264 - Language: - - - - - - NO - 1 - - - - 268 - {{17, 190}, {88, 14}} - - YES - - 68157504 - 71435264 - Birthday: - - - - - - NO - 1 - - - - 268 - {{17, 217}, {88, 14}} - - YES - - 68157504 - 71435264 - Favorite Color: - - - - - - NO - 1 - - - - 268 - {{17, 264}, {88, 14}} - - YES - - 68157504 - 71435264 - Message: - - - - - - NO - 1 - - - - 268 - {{17, 291}, {88, 14}} - - YES - - 68157504 - 71435264 - Nickname: - - - - - - NO - 1 - - - - 268 - {{110, 241}, {130, 40}} - - YES - - -1805647871 - 272760832 - - - Enter a message... - - YES - - - - NO - 1 - - - - 268 - {{110, 289}, {130, 19}} - - YES - - -1804599231 - 272761856 - - - Enter a nickname... - - YES - - - - NO - 1 - - - {260, 328} - NSView - - - - {260, 328} - {0, 328} - {260, 328} - 2 - 0.0 - 0.0 - - - - - 23 - 2 - {{144, 214}, {254, 262}} - -461896704 - Execution Control - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{0, 230}, {32, 32}} - - _NS:2530 - YES - - 67108864 - 134217728 - - - _NS:2530 - - -2033958912 - 134 - - NSImage - Icon_Execute_420x420 - - - - 400 - 75 - - NO - - - - 268 - {{32, 230}, {32, 32}} - - _NS:2530 - YES - - 67108864 - 134217728 - - - _NS:2530 - - -2033958912 - 134 - - NSImage - Icon_Pause_420x420 - - - - 400 - 75 - - NO - - - - 268 - {{64, 230}, {32, 32}} - - _NS:2530 - YES - - 67108864 - 134217728 - - - _NS:2530 - - -2033958912 - 134 - - NSImage - Icon_FrameAdvance_420x420 - - - - 400 - 75 - - NO - - - - 268 - {{222, 230}, {32, 32}} - - _NS:2530 - YES - - 67108864 - 134217728 - - - _NS:2530 - - -2033958912 - 134 - - NSImage - Icon_Reset_420x420 - - - - 400 - 75 - - NO - - - - 268 - {{96, 230}, {32, 32}} - - _NS:2530 - YES - - 67108864 - 134217728 - - - _NS:2530 - - -2033958912 - 134 - - NSImage - Icon_FrameJump_420x420 - - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - - YES - - {{176, 53}, {64, 19}} - - _NS:817 - YES - - -1804599231 - 272761856 - - - - YES - - YES - allowsFloats - formatterBehavior - groupingSize - locale - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - -∞ - - - # - +∞ - - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - _NS:817 - - YES - - - - NO - 1 - - - - 268 - - YES - - {{176, 33}, {64, 19}} - - _NS:817 - YES - - -1804599231 - -1874721792 - - - - - YES - - YES - allowsFloats - formatterBehavior - locale - negativeInfinitySymbol - nilSymbol - positiveInfinitySymbol - - - YES - - - - -∞ - - +∞ - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - _NS:817 - - YES - - - - NO - 1 - - - - 268 - {{18, 14}, {150, 58}} - - _NS:736 - YES - NO - 3 - 1 - - YES - - -2080374784 - 131072 - Jump forward frames: - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - Jump to frame number: - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + + 268 + {{198, 11}, {19, 27}} + + YES + + 67895328 + 0 + + + 12 + 1 + 100 + 1 + YES + + NO + + + + 268 + {{157, 16}, {40, 19}} + + YES + + -1804599231 + 71435264 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + maximum + maximumFractionDigits + minimum + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + -∞ + + + +∞ + + + + #0 + #0 + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + + 268 + {{74, 18}, {78, 14}} + + YES + + 68157504 + 71435264 + Block Size: + + + + + + NO + 1 + + + {{1, 1}, {250, 86}} + + + + {{17, 322}, {252, 102}} + + {0, 0} + + 67108864 + 0 + CPU Emulation Engine + + + + + + 1 + 0 + 2 + NO + + + {286, 522} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + EmulationSettingsPanel + YES + + + + 256 + + YES + + + 268 + {{53, 18}, {154, 19}} + + YES + + -2080374784 + 134217728 + Apply + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{107, 212}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + Gray + + 2147483647 + 1 + + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Brown + + 2147483647 + + + + _popUpItemAction: + 1 + + + + + Red + + 2147483647 + + + + _popUpItemAction: + 2 + + + + + Pink + + 2147483647 + + + + _popUpItemAction: + 3 + + + + + Orange + + 2147483647 + + + + _popUpItemAction: + 4 + + + + + Yellow + + 2147483647 + + + + _popUpItemAction: + 5 + + + + + Lime Green + + 2147483647 + + + + _popUpItemAction: + 6 + + + + + Green + + 2147483647 + + + + _popUpItemAction: + 7 + + + + + Dark Green + + 2147483647 + + + + _popUpItemAction: + 8 + + + + + Sea Green + + 2147483647 + + + + _popUpItemAction: + 9 + + + + + Turquoise + + 2147483647 + + + + _popUpItemAction: + 10 + + + + + Blue + + 2147483647 + + + + _popUpItemAction: + 11 + + + + + Dark Blue + + 2147483647 + + + + _popUpItemAction: + 12 + + + + + Dark Purple + + 2147483647 + + + + _popUpItemAction: + 13 + + + + + Violet + + 2147483647 + + + + _popUpItemAction: + 14 + + + + + Magenta + + 2147483647 + + + + _popUpItemAction: + 15 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{107, 157}, {136, 22}} + + YES + + -2076180416 + 133120 + + + 109199360 + 129 + + + 400 + 75 + + + English + + 2147483647 + 1 + + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + Japanese + + 2147483647 + + + _popUpItemAction: + + + + + + French + + 2147483647 + + + _popUpItemAction: + 2 + + + + + German + + 2147483647 + + + _popUpItemAction: + 3 + + + + + Italian + + 2147483647 + + + _popUpItemAction: + 4 + + + + + Spanish + + 2147483647 + + + _popUpItemAction: + 5 + + + + + + 1 + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 45}, {226, 98}} + + YES + + 67108864 + 272760832 + Note: To use this configuration, click Apply, and then reset the emulator. Also, these settings will be overridden if you are using an external firmware image. If you want to use this configuration, ensure that the Use External Firmware Image setting is disabled. + + + + + + NO + 1 + + + + 268 + {{110, 186}, {133, 27}} + + YES + + 71303168 + 131072 + + + + 0.0 + 224 + + + + NO + + + + 268 + {{17, 162}, {88, 14}} + + YES + + 68157504 + 71435264 + Language: + + + + + + NO + 1 + + + + 268 + {{17, 190}, {88, 14}} + + YES + + 68157504 + 71435264 + Birthday: + + + + + + NO + 1 + + + + 268 + {{17, 217}, {88, 14}} + + YES + + 68157504 + 71435264 + Favorite Color: + + + + + + NO + 1 + + + + 268 + {{17, 264}, {88, 14}} + + YES + + 68157504 + 71435264 + Message: + + + + + + NO + 1 + + + + 268 + {{17, 291}, {88, 14}} + + YES + + 68157504 + 71435264 + Nickname: + + + + + + NO + 1 + + + + 268 + {{110, 241}, {130, 40}} + + YES + + -1805647871 + 272760832 + + + Enter a message... + + YES + + + + NO + 1 + + + + 268 + {{110, 289}, {130, 19}} + + YES + + -1804599231 + 272761856 + + + Enter a nickname... + + YES + + + + NO + 1 + + + {260, 328} + NSView + + + + {260, 328} + {0, 328} + {260, 328} + 2 + 0.0 + 0.0 + + + + + 23 + 2 + {{144, 214}, {254, 262}} + -461896704 + Execution Control + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{0, 230}, {32, 32}} + + _NS:2530 + YES + + 67108864 + 134217728 + + + _NS:2530 + + -2033958912 + 134 + + NSImage + Icon_Execute_420x420 + + + + 400 + 75 + + NO + + + + 268 + {{32, 230}, {32, 32}} + + _NS:2530 + YES + + 67108864 + 134217728 + + + _NS:2530 + + -2033958912 + 134 + + NSImage + Icon_Pause_420x420 + + + + 400 + 75 + + NO + + + + 268 + {{64, 230}, {32, 32}} + + _NS:2530 + YES + + 67108864 + 134217728 + + + _NS:2530 + + -2033958912 + 134 + + NSImage + Icon_FrameAdvance_420x420 + + + + 400 + 75 + + NO + + + + 268 + {{222, 230}, {32, 32}} + + _NS:2530 + YES + + 67108864 + 134217728 + + + _NS:2530 + + -2033958912 + 134 + + NSImage + Icon_Reset_420x420 + + + + 400 + 75 + + NO + + + + 268 + {{96, 230}, {32, 32}} + + _NS:2530 + YES + + 67108864 + 134217728 + + + _NS:2530 + + -2033958912 + 134 + + NSImage + Icon_FrameJump_420x420 + + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + + YES + + {{176, 53}, {64, 19}} + + _NS:817 + YES + + -1804599231 + 272761856 + + + + YES + + YES + allowsFloats + formatterBehavior + groupingSize + locale + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + -∞ + + + # + +∞ + + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + _NS:817 + + YES + + + + NO + 1 + + + + 268 + + YES + + {{176, 33}, {64, 19}} + + _NS:817 + YES + + -1804599231 + -1874721792 + + + + + YES + + YES + allowsFloats + formatterBehavior + locale + negativeInfinitySymbol + nilSymbol + positiveInfinitySymbol + + + YES + + + + -∞ + + +∞ + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + _NS:817 + + YES + + + + NO + 1 + + + + 268 + {{18, 14}, {150, 58}} + + _NS:736 + YES + NO + 3 + 1 + + YES + + -2080374784 + 131072 + Jump forward frames: + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + Jump to frame number: + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -19619,86 +19505,86 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 603979776 - 131072 - Jump to next marker - - - 2 - 1211912448 - 0 - - 12779520 - - YES - - YES - - - - YES - - YES - size - state - value - widget - - - YES - regular - normal - - radiobutton - - - {18, 18} - 0 - YES - NSCalibratedRGBColorSpace - - - - - - - 400 - 75 - - - {150, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 603979776 + 131072 + Jump to next marker + + + 2 + 1211912448 + 0 + + 12779520 + + YES + + YES + + + + YES + + YES + size + state + value + widget + + + YES + regular + normal + + radiobutton + + + {18, 18} + 0 + YES + NSCalibratedRGBColorSpace + + + + + + + 400 + 75 + + + {150, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -19776,681 +19662,681 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {258, 82}} - - _NS:21 - - - {{-3, 124}, {260, 98}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Frame Jump Properties - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 30}, {222, 16}} - - YES - - -2080112384 - 262144 - - - 10 - 0.0 - 1 - 0.0 - 11 - 1 - NO - NO - - NO - - - - 268 - {{219, 45}, {28, 11}} - - YES - - 68157504 - 138675200 - 10x - - - - - - NO - 1 - - - - 268 - {{52, 45}, {28, 11}} - - YES - - 68157504 - 138675200 - 2x - - - - - - NO - 1 - - - - 268 - {{94, 45}, {28, 11}} - - YES - - 68157504 - 138675200 - 4x - - - - - - NO - 1 - - - - 268 - {{136, 45}, {28, 11}} - - YES - - 68157504 - 138675200 - 6x - - - - - - NO - 1 - - - - 268 - {{178, 45}, {28, 11}} - - YES - - 68157504 - 138675200 - 8x - - - - - - NO - 1 - - - - 268 - {{151, 62}, {89, 17}} - - 100 - YES - - 67108864 - 134348800 - Normal Speed - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{15, 14}, {133, 14}} - - YES - - 68157504 - 4326400 - Execution speed set to: - - - - - - NO - 1 - - - - 268 - {{150, 14}, {93, 14}} - - YES - - 68157504 - 4326400 - - statusText - - - - - NO - 1 - - - - 268 - {{15, 62}, {98, 18}} - - YES - - -2080374784 - 131072 - Enable Limiter - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{9, 45}, {28, 11}} - - YES - - 68157504 - 138675200 - 0x - - - - - - NO - 1 - - - {{1, 1}, {258, 88}} - - _NS:21 - - - {{-3, 16}, {260, 104}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Execution Speed Properties - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{4, 4}, {42, 14}} - - _NS:4068 - YES - - 68157504 - 272761856 - Frame: - - _NS:4068 - - - - - NO - 1 - - - - 268 - {{48, 4}, {189, 14}} - - _NS:4068 - YES - - 68157504 - 272761856 - - - statusText - _NS:4068 - - - - - NO - 1 - - - {254, 262} - _NS:103 - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - ExecutionControlPanel - NO - - - 279 - 2 - {{170, 20}, {194, 241}} - -461896704 - HUD Settings - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{18, 174}, {158, 18}} - - YES - - -2080374784 - 131072 - Frame Counter - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 154}, {158, 18}} - - YES - - -2080374784 - 131072 - Frames Per Second - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 134}, {158, 18}} - - YES - - -2080374784 - 131072 - Input - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 114}, {158, 18}} - - YES - - -2080374784 - 131072 - Graphical Input - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 94}, {158, 18}} - - YES - - -2080374784 - 131072 - Lag Counter - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 74}, {158, 18}} - - YES - - -2080374784 - 131072 - Microphone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{18, 54}, {158, 18}} - - YES - - -2080374784 - 131072 - Real Time Clock - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{20, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{18, 205}, {158, 18}} - - YES - - -2080374784 - 131072 - Enable HUD - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 12 - {{21, 196}, {153, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - - 3 - 2 - 0 - NO - - - {194, 241} - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - YES - - - 279 - 2 - {{1004, 23}, {204, 713}} - -461896704 - Video Settings - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{20, 18}, {164, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {132, 358}} - - YES - NO - 18 - 1 - - YES - - -2080374784 - 131072 - None - - - 1211912448 - 2 - - NSImage - NSRadioButton - - - - - 200 - 25 - - - 67108864 - 131072 - Nearest 2x - - - 11 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {258, 82}} + + _NS:21 + + + {{-3, 124}, {260, 98}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Frame Jump Properties + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 30}, {222, 16}} + + YES + + -2080112384 + 262144 + + + 10 + 0.0 + 1 + 0.0 + 11 + 1 + NO + NO + + NO + + + + 268 + {{219, 45}, {28, 11}} + + YES + + 68157504 + 138675200 + 10x + + + + + + NO + 1 + + + + 268 + {{52, 45}, {28, 11}} + + YES + + 68157504 + 138675200 + 2x + + + + + + NO + 1 + + + + 268 + {{94, 45}, {28, 11}} + + YES + + 68157504 + 138675200 + 4x + + + + + + NO + 1 + + + + 268 + {{136, 45}, {28, 11}} + + YES + + 68157504 + 138675200 + 6x + + + + + + NO + 1 + + + + 268 + {{178, 45}, {28, 11}} + + YES + + 68157504 + 138675200 + 8x + + + + + + NO + 1 + + + + 268 + {{150, 62}, {90, 17}} + + 100 + YES + + 67108864 + 134348800 + Normal Speed + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{15, 14}, {133, 14}} + + YES + + 68157504 + 4326400 + Execution speed set to: + + + + + + NO + 1 + + + + 268 + {{150, 14}, {93, 14}} + + YES + + 68157504 + 4326400 + + statusText + + + + + NO + 1 + + + + 268 + {{15, 62}, {98, 18}} + + YES + + -2080374784 + 131072 + Enable Limiter + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{9, 45}, {28, 11}} + + YES + + 68157504 + 138675200 + 0x + + + + + + NO + 1 + + + {{1, 1}, {258, 88}} + + _NS:21 + + + {{-3, 16}, {260, 104}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Execution Speed Properties + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{4, 4}, {45, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + Frame: + + _NS:4068 + + + + + NO + 1 + + + + 268 + {{51, 4}, {186, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + + + statusText + _NS:4068 + + + + + NO + 1 + + + {254, 262} + _NS:103 + + {{0, 0}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + ExecutionControlPanel + NO + + + 279 + 2 + {{170, 20}, {194, 241}} + -461896704 + HUD Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{18, 174}, {158, 18}} + + YES + + -2080374784 + 131072 + Frame Counter + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 154}, {158, 18}} + + YES + + -2080374784 + 131072 + Frames Per Second + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 134}, {158, 18}} + + YES + + -2080374784 + 131072 + Input + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 114}, {158, 18}} + + YES + + -2080374784 + 131072 + Graphical Input + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 94}, {158, 18}} + + YES + + -2080374784 + 131072 + Lag Counter + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 74}, {158, 18}} + + YES + + -2080374784 + 131072 + Microphone + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{18, 54}, {158, 18}} + + YES + + -2080374784 + 131072 + Real Time Clock + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{16, 18}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{18, 205}, {158, 18}} + + YES + + -2080374784 + 131072 + Enable HUD + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 12 + {{21, 196}, {153, 5}} + + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + {194, 241} + + {{0, 0}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + YES + + + 279 + 2 + {{1004, 23}, {204, 713}} + -461896704 + Video Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{21, 18}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {132, 358}} + + YES + NO + 18 + 1 + + YES + + -2080374784 + 131072 + None + + + 1211912448 + 2 + + NSImage + NSRadioButton + + + + + 200 + 25 + + + 67108864 + 131072 + Nearest 2x + + + 11 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -20527,329 +20413,329 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 1140850688 - 131072 - Scanline - - - 9 - 1211912448 - 0 - - 12779520 - - YES - - YES - - - - YES - - YES - size - state - value - widget - - - YES - regular - normal - - radiobutton - - - {18, 18} - 0 - YES - NSCalibratedRGBColorSpace - - - - - - - 400 - 75 - - - 1140850688 - 131072 - EPX - - - 14 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - EPX+ - - - 15 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Super Eagle - - - 8 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - 2xSaI - - - 6 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - Super 2xSaI - - - 7 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - LQ2x - - - 1 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - LQ2xS - - - 2 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - HQ2x - - - 3 - 1211912448 - 0 - - - 400 - 75 - - - 1140850688 - 131072 - HQ2xS - - - 4 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - HQ4x - - - 5 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - HQ4xS - - - 18 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - 2xBRZ - - - 19 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - 3xBRZ - - - 20 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - 4xBRZ - - - 21 - 1211912448 - 0 - - - 400 - 75 - - - 67108864 - 131072 - 5xBRZ - - - 22 - 1211912448 - 0 - - 12779520 - - YES - - YES - - - - YES - - YES - size - state - value - widget - - - YES - regular - normal - - radiobutton - - - {18, 18} - 0 - YES - NSCalibratedRGBColorSpace - - - - - - - 400 - 75 - - - {132, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 1140850688 + 131072 + Scanline + + + 9 + 1211912448 + 0 + + 12779520 + + YES + + YES + + + + YES + + YES + size + state + value + widget + + + YES + regular + normal + + radiobutton + + + {18, 18} + 0 + YES + NSCalibratedRGBColorSpace + + + + + + + 400 + 75 + + + 1140850688 + 131072 + EPX + + + 14 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + EPX+ + + + 15 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Super Eagle + + + 8 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + 2xSaI + + + 6 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + Super 2xSaI + + + 7 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + LQ2x + + + 1 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + LQ2xS + + + 2 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + HQ2x + + + 3 + 1211912448 + 0 + + + 400 + 75 + + + 1140850688 + 131072 + HQ2xS + + + 4 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + HQ4x + + + 5 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + HQ4xS + + + 18 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + 2xBRZ + + + 19 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + 3xBRZ + + + 20 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + 4xBRZ + + + 21 + 1211912448 + 0 + + + 400 + 75 + + + 67108864 + 131072 + 5xBRZ + + + 22 + 1211912448 + 0 + + 12779520 + + YES + + YES + + + + YES + + YES + size + state + value + widget + + + YES + regular + normal + + radiobutton + + + {18, 18} + 0 + YES + NSCalibratedRGBColorSpace + + + + + + + 400 + 75 + + + {132, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -20927,206 +20813,206 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {168, 382}} - - - - {{17, 41}, {170, 398}} - - {0, 0} - - 67108864 - 0 - Pixel Scaler - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{17, 685}, {111, 18}} - - YES - - 67108864 - 131072 - Use vertical sync - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 665}, {178, 18}} - - _NS:682 - YES - - -2080374784 - 131072 - Run filters on GPU if possible - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 12}, {86, 18}} - - _NS:682 - YES - - -2080374784 - 131072 - Deposterize - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {168, 38}} - - _NS:21 - - - {{17, 605}, {170, 54}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Source Filters - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {132, 118}} - - _NS:736 - YES - NO - 6 - 1 - - YES - - 67108864 - 131072 - Nearest Neighbor - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - Bilinear - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {168, 382}} + + + + {{17, 41}, {170, 398}} + + {0, 0} + + 67108864 + 0 + Pixel Scaler + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{17, 685}, {113, 18}} + + YES + + 67108864 + 131072 + Use vertical sync + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{17, 665}, {178, 18}} + + _NS:682 + YES + + -2080374784 + 131072 + Run filters on GPU if possible + + _NS:682 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 12}, {86, 18}} + + _NS:682 + YES + + -2080374784 + 131072 + Deposterize + + _NS:682 + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {168, 38}} + + _NS:21 + + + {{17, 605}, {170, 54}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Source Filters + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {132, 118}} + + _NS:736 + YES + NO + 6 + 1 + + YES + + 67108864 + 131072 + Nearest Neighbor + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + Bilinear + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -21203,91 +21089,91 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 131072 - Bicubic (B-Spline) - - - 2 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 131072 - Bicubic (Mitchell) - - - 3 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 131072 - Lanczos2 - - - 4 - 1211912448 - 0 - - 400 - 75 - - - 67108864 - 131072 - Lanczos3 - - - 5 - 1211912448 - 0 - - 400 - 75 - - - {132, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 131072 + Bicubic (B-Spline) + + + 2 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 131072 + Bicubic (Mitchell) + + + 3 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 131072 + Lanczos2 + + + 4 + 1211912448 + 0 + + 400 + 75 + + + 67108864 + 131072 + Lanczos3 + + + 5 + 1211912448 + 0 + + 400 + 75 + + + {132, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -21365,540 +21251,540 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 1 - - - - - - - {{1, 1}, {168, 142}} - - _NS:21 - - - {{17, 443}, {170, 158}} - - _NS:18 - {0, 0} - - 67108864 - 0 - Output Filter - - - - - - 1 - 0 - 2 - NO - - - {204, 713} - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - DisplayVideoSettingsPanel - YES - - - 279 - 2 - {{149, 201}, {301, 467}} - -461896704 - 3D Rendering Settings - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 145}, {206, 18}} - - YES - - -2080374784 - 131072 - High-Precision Color Interpolation - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 125}, {134, 18}} - - YES - - -2080374784 - 131072 - Enable Edge Marking - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 105}, {81, 18}} - - YES - - -2080374784 - 131072 - Enable Fog - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{185, 39}, {45, 19}} - - YES - - -1804599231 - 71435264 - - - - - YES - - YES - allowsFloats - formatterBehavior - groupingSize - locale - maximum - maximumIntegerDigits - minimum - minimumIntegerDigits - negativeFormat - negativeInfinitySymbol - nilSymbol - numberStyle - positiveFormat - positiveInfinitySymbol - - - YES - - - - - - - - - # - -∞ - - - # - +∞ - - - # - # - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - NO - - - YES - - - - NO - 1 - - - - 268 - {{15, 41}, {165, 14}} - - YES - - 68157504 - 4326400 - Depth Comparison Threshold: - - - - - - NO - 1 - - - - 268 - {{15, 15}, {109, 14}} - - YES - - 68157504 - 4326400 - Rendering Threads: - - - - - - NO - 1 - - - - 268 - {{231, 34}, {19, 27}} - - YES - - 67895328 - 0 - - - 100 - 1 - YES - - NO - - - - 268 - {{15, 85}, {113, 18}} - - YES - - -2080374784 - 131072 - Enable Line Hack - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{15, 65}, {194, 18}} - - YES - - -2080374784 - 131072 - Enable Fragment Sampling Hack - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{126, 10}, {124, 22}} - - _NS:791 - YES - - -2076180416 - 133120 - - _NS:791 - - 109199360 - 129 - - - 400 - 75 - - - Automatic - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - Single-Threaded - - 2147483647 - - - _popUpItemAction: - 1 - - - - - 2 Threads - - 2147483647 - - - _popUpItemAction: - 2 - - - - - 4 Threads - - 2147483647 - - - _popUpItemAction: - 4 - - - - - 8 Threads - - 2147483647 - - - _popUpItemAction: - 8 - - - - - 16 Threads - - 2147483647 - - - _popUpItemAction: - 16 - - - - - 32 Threads - - 2147483647 - - - _popUpItemAction: - 32 - - - - - - 1 - YES - YES - 2 - - NO - - - {{1, 1}, {265, 171}} - - - - {{17, 99}, {267, 187}} - - {0, 0} - - 67108864 - 0 - SoftRasterizer Options - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{73, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {107, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 131072 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - SoftRasterizer - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + {{1, 1}, {168, 142}} + + _NS:21 + + + {{17, 443}, {170, 158}} + + _NS:18 + {0, 0} + + 67108864 + 0 + Output Filter + + + + + + 1 + 0 + 2 + NO + + + {204, 713} + + {{0, 0}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + DisplayVideoSettingsPanel + YES + + + 279 + 2 + {{149, 201}, {301, 467}} + -461896704 + 3D Rendering Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 145}, {206, 18}} + + YES + + -2080374784 + 131072 + High-Precision Color Interpolation + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 125}, {135, 18}} + + YES + + -2080374784 + 131072 + Enable Edge Marking + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 105}, {82, 18}} + + YES + + -2080374784 + 131072 + Enable Fog + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{185, 39}, {45, 19}} + + YES + + -1804599231 + 71435264 + + + + + YES + + YES + allowsFloats + formatterBehavior + groupingSize + locale + maximum + maximumIntegerDigits + minimum + minimumIntegerDigits + negativeFormat + negativeInfinitySymbol + nilSymbol + numberStyle + positiveFormat + positiveInfinitySymbol + + + YES + + + + + + + + + # + -∞ + + + # + +∞ + + + # + # + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + NO + + + YES + + + + NO + 1 + + + + 268 + {{15, 41}, {165, 14}} + + YES + + 68157504 + 4326400 + Depth Comparison Threshold: + + + + + + NO + 1 + + + + 268 + {{15, 15}, {109, 14}} + + YES + + 68157504 + 4326400 + Rendering Threads: + + + + + + NO + 1 + + + + 268 + {{231, 34}, {19, 27}} + + YES + + 67895328 + 0 + + + 100 + 1 + YES + + NO + + + + 268 + {{15, 85}, {115, 18}} + + YES + + -2080374784 + 131072 + Enable Line Hack + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{15, 65}, {195, 18}} + + YES + + -2080374784 + 131072 + Enable Fragment Sampling Hack + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + + 268 + {{126, 10}, {124, 22}} + + _NS:791 + YES + + -2076180416 + 133120 + + _NS:791 + + 109199360 + 129 + + + 400 + 75 + + + Automatic + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + Single-Threaded + + 2147483647 + + + _popUpItemAction: + 1 + + + + + 2 Threads + + 2147483647 + + + _popUpItemAction: + 2 + + + + + 4 Threads + + 2147483647 + + + _popUpItemAction: + 4 + + + + + 8 Threads + + 2147483647 + + + _popUpItemAction: + 8 + + + + + 16 Threads + + 2147483647 + + + _popUpItemAction: + 16 + + + + + 32 Threads + + 2147483647 + + + _popUpItemAction: + 32 + + + + + + 1 + YES + YES + 2 + + NO + + + {{1, 1}, {265, 171}} + + + + {{17, 99}, {267, 187}} + + {0, 0} + + 67108864 + 0 + SoftRasterizer Options + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{69, 18}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {107, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 131072 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + SoftRasterizer + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -21975,52 +21861,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 131072 - OpenGL - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {107, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 131072 + OpenGL + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {107, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -22098,232 +21984,232 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 1 - - - - - - - {{1, 1}, {265, 82}} - - - - {{17, 349}, {267, 98}} - - {0, 0} - - 67108864 - 0 - 3D Rendering Engine - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 12}, {108, 18}} - - YES - - -2080374784 - 131072 - Enable Textures - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {265, 38}} - - - - {{17, 291}, {267, 54}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{16, 12}, {192, 18}} - - YES - - 67108864 - 131072 - Enable Multisample Antialiasing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {265, 38}} - - - - {{17, 41}, {267, 54}} - - {0, 0} - - 67108864 - 0 - OpenGL Options - - - - - - 1 - 0 - 2 - NO - - - {301, 467} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - 3DRenderingSettingsPanel - YES - - - 279 - 2 - {{230, 30}, {288, 511}} - -461896704 - Sound Settings - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {61, 58}} - - YES - NO - 3 - 1 - - YES - - 67108864 - 131072 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - Linear - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + {{1, 1}, {265, 82}} + + + + {{17, 349}, {267, 98}} + + {0, 0} + + 67108864 + 0 + 3D Rendering Engine + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 12}, {108, 18}} + + YES + + -2080374784 + 131072 + Enable Textures + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {265, 38}} + + + + {{17, 291}, {267, 54}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{16, 12}, {192, 18}} + + YES + + 67108864 + 131072 + Enable Multisample Antialiasing + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {265, 38}} + + + + {{17, 41}, {267, 54}} + + {0, 0} + + 67108864 + 0 + OpenGL Options + + + + + + 1 + 0 + 2 + NO + + + {301, 467} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + 3DRenderingSettingsPanel + YES + + + 279 + 2 + {{230, 30}, {288, 511}} + -461896704 + Sound Settings + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {61, 58}} + + YES + NO + 3 + 1 + + YES + + 67108864 + 131072 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + Linear + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -22400,52 +22286,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - -2080374784 - 131072 - Cosine - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {61, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + -2080374784 + 131072 + Cosine + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {61, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -22523,99 +22409,99 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 2 - - - - - - - {{1, 1}, {253, 82}} - - - - {{16, 189}, {255, 98}} - - {0, 0} - - 67108864 - 0 - SPU Interpolation Method - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 80}, {154, 38}} - - YES - NO - 2 - 1 - - YES - - 67108864 - 131072 - Dual SPU Synch/Asynch - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - Synchronous - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 2 + + + + + + + {{1, 1}, {253, 82}} + + + + {{16, 189}, {255, 98}} + + {0, 0} + + 67108864 + 0 + SPU Interpolation Method + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 80}, {154, 38}} + + YES + NO + 2 + 1 + + YES + + 67108864 + 131072 + Dual SPU Synch/Asynch + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + Synchronous + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -22692,39 +22578,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {154, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {154, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -22802,70 +22688,70 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 1 - - - - - - - - 268 - - YES - - {{53, 14}, {100, 58}} - - YES - NO - 3 - 1 - - YES - - -2080374784 - 131072 - "N" Method - - - 1211912448 - 0 - - - - 200 - 25 - - - 67108864 - 131072 - "Z" Method - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + 1 + + + + + + + + 268 + + YES + + {{53, 14}, {100, 58}} + + YES + NO + 3 + 1 + + YES + + -2080374784 + 131072 + "N" Method + + + 1211912448 + 0 + + + + 200 + 25 + + + 67108864 + 131072 + "Z" Method + + + 1 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -22942,52 +22828,52 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 131072 - "P" Method - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {100, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + 67108864 + 131072 + "P" Method + + + 2 + 1211912448 + 0 + + 400 + 75 + + + {100, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -23065,338 +22951,338 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - {{1, 1}, {253, 128}} - - - - {{16, 41}, {255, 144}} - - {0, 0} - - 67108864 - 0 - SPU Sound Synchronization Method - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 12}, {135, 18}} - - YES - - -2080374784 - 131072 - Advanced SPU Logic - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {{1, 1}, {253, 38}} - - - - {{16, 291}, {255, 54}} - - {0, 0} - - 67108864 - 0 - SPU Configuration - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{47, 13}, {132, 21}} - - YES - - 67371264 - 0 - - - 100 - 0.0 - 100 - 0.0 - 0 - 1 - NO - NO - - NO - - - - 268 - {{182, 17}, {56, 17}} - - YES - - 68157504 - 71308288 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - lenient - locale - maximumFractionDigits - minimumFractionDigits - multiplier - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - - -∞ - - - +∞ - - - - #0.0% - #0.0% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - %1.1f%% - - - - - NO - 1 - - - - 289 - - 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 - - - {{18, 14}, {20, 20}} - - YES - - 134217728 - 33554432 - - 0 - 2 - 0 - YES - - NO - YES - - - {{1, 1}, {253, 44}} - - - - {{16, 349}, {255, 60}} - - {0, 0} - - 67108864 - 0 - General Settings - - - - - - 1 - 0 - 2 - NO - - - - 268 - {{66, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{18, 14}, {116, 38}} - - YES - NO - 2 - 1 - - YES - - 67108864 - 131072 - None - - - 1211912448 - 0 - - - - 200 - 25 - - - -2080374784 - 131072 - OS X Core Audio - - - 58325 - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + + + + + + {{1, 1}, {253, 128}} + + + + {{16, 41}, {255, 144}} + + {0, 0} + + 67108864 + 0 + SPU Sound Synchronization Method + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{15, 12}, {135, 18}} + + YES + + -2080374784 + 131072 + Advanced SPU Logic + + + 1211912448 + 2 + + + + + 200 + 25 + + NO + + + {{1, 1}, {253, 38}} + + + + {{16, 291}, {255, 54}} + + {0, 0} + + 67108864 + 0 + SPU Configuration + + + + + + 1 + 0 + 2 + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{47, 13}, {132, 21}} + + YES + + 67371264 + 0 + + + 100 + 0.0 + 100 + 0.0 + 0 + 1 + NO + NO + + NO + + + + 268 + {{178, 17}, {60, 17}} + + YES + + 68157504 + 71308288 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + lenient + locale + maximumFractionDigits + minimumFractionDigits + multiplier + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + + -∞ + + + +∞ + + + + #0.0% + #0.0% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + %1.1f%% + + + + + NO + 1 + + + + 289 + + 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 + + + {{18, 14}, {20, 20}} + + YES + + 134217728 + 33554432 + + 0 + 2 + 0 + YES + + NO + YES + + + {{1, 1}, {253, 44}} + + + + {{16, 349}, {255, 60}} + + {0, 0} + + 67108864 + 0 + General Settings + + + + + + 1 + 0 + 2 + NO + + + + 268 + {{62, 18}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 12 + + YES + + + 274 + + YES + + + 268 + {{18, 14}, {116, 38}} + + YES + NO + 2 + 1 + + YES + + 67108864 + 131072 + None + + + 1211912448 + 0 + + + + 200 + 25 + + + -2080374784 + 131072 + OS X Core Audio + + + 58325 + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -23473,39 +23359,39 @@ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - {116, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 131072 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - YES - - YES - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA + + + + + + + + 400 + 75 + + + {116, 18} + {4, 2} + 1151868928 + NSActionCell + + 67108864 + 131072 + Radio + + 1211912448 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ 29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 @@ -23583,39474 +23469,40749 @@ y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb 6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn +3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - 1 - - - - - - - {{1, 1}, {253, 62}} - - - - {{16, 413}, {255, 78}} - - {0, 0} - - 67108864 - 0 - Audio Output Engine - - - - - - 1 - 0 - 2 - NO - - - {288, 511} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - SoundSettingsPanel - YES - - - 8215 - 2 - {{69, 199}, {580, 588}} - -461897728 - ROM Info - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - - 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 - - - {{20, 440}, {128, 128}} - - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 89}, {131, 17}} - - - YES - - 68157504 - 272634880 - ROM Name: - - - - - - NO - 1 - - - - 268 - {{15, 64}, {131, 17}} - - - YES - - 68157504 - 272630784 - ROM Serial: - - - - - - NO - 1 - - - - 268 - {{15, 39}, {131, 17}} - - - YES - - 68157504 - 272630784 - ROM Developer: - - - - - - NO - 1 - - - - 268 - {{15, 14}, {131, 17}} - - - YES - - 68157504 - 272630784 - Chip Size: - - - - - - NO - 1 - - - - 268 - {{148, 89}, {245, 17}} - - - YES - - 70254657 - 4199424 - - - ? - - - - 1 - MSAxIDEAA - - - NO - 1 - - - - 268 - {{148, 64}, {245, 17}} - - - YES - - 70254657 - 4199424 - - - ? - - - - - NO - 1 - - - - 268 - {{148, 39}, {245, 17}} - - - YES - - 70254657 - 4199424 - - - ? - - - - - NO - 1 - - - - 268 - {{148, 14}, {245, 17}} - - - YES - - 70254657 - 4199424 - - - ? - - - - - NO - 1 - - - {{1, 1}, {408, 116}} - - - - - {{153, 436}, {410, 132}} - - - {0, 0} - - 67108864 - 0 - General Info - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 376}, {186, 14}} - - - YES - - 68157504 - 272897024 - JAPANESE TITLE: - - - - - - NO - 1 - - - - 268 - {{15, 312}, {186, 14}} - - - YES - - 68157504 - 272897024 - ENGLISH TITLE: - - - - - - NO - 1 - - - - 268 - {{15, 248}, {186, 14}} - - - YES - - 68157504 - 272897024 - FRENCH TITLE: - - - - - - NO - 1 - - - - 268 - {{15, 184}, {186, 14}} - - - YES - - 68157504 - 272897024 - GERMAN TITLE: - - - - - - NO - 1 - - - - 268 - {{15, 120}, {186, 14}} - - - YES - - 68157504 - 272897024 - ITALIAN TITLE: - - - - - - NO - 1 - - - - 268 - {{15, 56}, {186, 14}} - - - YES - - 68157504 - 272897024 - SPANISH TITLE: - - - - - - NO - 1 - - - - 268 - {{15, 334}, {186, 42}} - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 270}, {186, 42}} - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 206}, {186, 42}} - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 142}, {186, 42}} - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 78}, {186, 42}} - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 14}, {186, 42}} - - - YES - - 69206017 - 272896000 - - - ? - - - - - NO - 1 - - - {{1, 1}, {216, 400}} - - - - - {{17, 16}, {218, 416}} - - - {0, 0} - - 67108864 - 0 - Titles - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 168}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM9 Binary ROM Offset: - - - - - - NO - 1 - - - - 268 - {{15, 146}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM9 Binary Entry Address: - - - - - - NO - 1 - - - - 268 - {{15, 124}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM9 Binary Start Address: - - - - - - NO - 1 - - - - 268 - {{15, 102}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM9 Binary Size: - - - - - - NO - 1 - - - - 268 - {{15, 80}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM7 Binary ROM Offset: - - - - - - NO - 1 - - - - 268 - {{15, 58}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM7 Binary Entry Address: - - - - - - NO - 1 - - - - 268 - {{15, 36}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM7 Binary Start Address: - - - - - - NO - 1 - - - - 268 - {{15, 14}, {186, 14}} - - - YES - - 68157504 - 272630784 - ARM7 Binary Size: - - - - - - NO - 1 - - - - 268 - {{203, 168}, {106, 14}} - - - YES - - 70254657 - 71308288 - - ? - - - - - NO - 1 - - - - 268 - {{203, 146}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{203, 124}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{203, 102}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - 1 - - - - 268 - {{203, 80}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{203, 58}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{203, 36}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{203, 14}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - 1 - - - {{1, 1}, {324, 192}} - - - - - {{237, 224}, {326, 208}} - - - {0, 0} - - 67108864 - 0 - ARM9 & ARM7 Binaries - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 80}, {186, 14}} - - - YES - - 68157504 - 272630784 - FNT ROM Offset: - - - - - - NO - 1 - - - - 268 - {{203, 80}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 58}, {186, 14}} - - - YES - - 68157504 - 272630784 - FNT Size: - - - - - - NO - 1 - - - - 268 - {{203, 58}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - 1 - - - - 268 - {{15, 36}, {186, 14}} - - - YES - - 68157504 - 272630784 - FAT ROM Offset: - - - - - - NO - 1 - - - - 268 - {{203, 36}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 14}, {186, 14}} - - - YES - - 68157504 - 272630784 - FAT Size: - - - - - - NO - 1 - - - - 268 - {{203, 14}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? bytes - - - - - NO - 1 - - - {{1, 1}, {324, 104}} - - - - - {{237, 98}, {326, 120}} - - - {0, 0} - - 67108864 - 0 - File System - - - - - - 1 - 0 - 2 - NO - - - - 12 - - YES - - - 274 - - YES - - - 268 - {{15, 36}, {186, 14}} - - - YES - - 68157504 - 272630784 - Icon/Title Region ROM Offset: - - - - - - NO - 1 - - - - 268 - {{203, 36}, {106, 14}} - - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - - 268 - {{15, 14}, {186, 14}} - - - YES - - 68157504 - 272630784 - Used ROM Size: - - - - - - NO - 1 - - - - 268 - {{203, 14}, {106, 14}} - - YES - - 70254657 - 71308288 - - - ? - - - - - NO - 1 - - - {{1, 1}, {324, 60}} - - - - - {{237, 16}, {326, 76}} - - - {0, 0} - - 67108864 - 0 - Miscellaneous - - - - - - 1 - 0 - 2 - NO - - - {580, 588} - - - {{0, 0}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - ROMInfoPanel - YES - - - 279 - 2 - {{162, 281}, {213, 198}} - -461896704 - Set Rotation - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{88, 119}, {32, 34}} - - YES - - 67371264 - 0 - - - 360 - 0.0 - 0.0 - 0.0 - 4 - 1 - NO - NO - 1 - - NO - - - - 268 - {{85, 161}, {38, 17}} - - YES - - 68157504 - 138413056 - - - - - - - NO - 1 - - - - 268 - {{85, 94}, {39, 17}} - - YES - - 68157504 - 138413056 - 180º - - - - - - NO - 1 - - - - 268 - {{44, 127}, {39, 17}} - - YES - - 68157504 - 138413056 - 270º - - - - - - NO - 1 - - - - 268 - {{125, 127}, {38, 17}} - - YES - - 68157504 - 138413056 - 90º - - - - - - NO - 1 - - - - 268 - {{127, 69}, {57, 17}} - - YES - - 68157504 - 272630784 - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - currencySymbol - formatterBehavior - internationalCurrencySymbol - lenient - locale - maximumFractionDigits - maximumIntegerDigits - minimumFractionDigits - minimumIntegerDigits - negativeFormat - negativeSuffix - numberStyle - positiveFormat - positiveSuffix - - - YES - - - ¤ - - ¤¤ - - - - - - - #0.00º - º - - #0.00º - º - - - #0.00º - #0.00º - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - rotX - - - - - NO - 1 - - - - 268 - {{24, 69}, {101, 17}} - - YES - - 68157504 - 272630784 - Rotation set to: - - - - - - NO - 1 - - - - 268 - {{27, 42}, {154, 19}} - - YES - - -2080374784 - 134217728 - Set to 0º - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{27, 17}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {213, 198} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - SetRotationPanel - YES - - - 279 - 2 - {{230, 408}, {441, 133}} - -461896704 - Set Separation - NSPanel - - - {1.7976931348623157e+308, 1.7976931348623157e+308} - - - 256 - - YES - - - 268 - {{30, 73}, {385, 26}} - - YES - - -2080112384 - 0 - - - 2 - 0.0 - 1 - 0.0 - 5 - 1 - NO - NO - - NO - - - - 268 - {{389, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 200% - - - - - - NO - 1 - - - - 268 - {{298, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 150% - - - - - - NO - 1 - - - - 268 - {{205, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 100% - - - - - - NO - 1 - - - - 268 - {{113, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 50% - - - - - - NO - 1 - - - - 268 - {{22, 99}, {38, 14}} - - YES - - 68157504 - 138544128 - 0% - - - - - - NO - 1 - - - - 268 - {{249, 51}, {107, 17}} - - YES - - 68157504 - 71304192 - Gap Percentage: - - - - - - NO - 1 - - - - 268 - {{358, 51}, {66, 17}} - - YES - - 68157504 - -2143288320 - - - - - YES - - YES - allowsFloats - alwaysShowsDecimalSeparator - formatterBehavior - locale - maximumFractionDigits - maximumIntegerDigits - minimumFractionDigits - negativeInfinitySymbol - nilSymbol - numberStyle - positiveInfinitySymbol - usesGroupingSeparator - - - YES - - - - - - - - -∞ - - - +∞ - - - - #0.0% - #0.0% - - - - - - - - NaN - - - - - - 3 - YES - YES - YES - - . - , - NO - NO - YES - - 1.1f% - - - - - NO - 1 - - - - 268 - {{20, 48}, {100, 19}} - - YES - - -2080374784 - 134217728 - Set to 0% - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{128, 48}, {100, 19}} - - 100 - YES - - -2080374784 - 134217728 - Set to 100% - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - - 268 - {{147, 18}, {154, 19}} - - YES - - -2080374784 - 134217728 - Save Settings as Default - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {441, 133} - - {{0, 0}, {1920, 1178}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - SetSeparationPanel - YES - - - 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}, {106, 18}} - - YES - - -2080374784 - 131072 - GPU (All Layers) - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 92}, {44, 18}} - - 1 - YES - - -2080374784 - 131072 - BG0 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 72}, {44, 18}} - - 2 - YES - - -2080374784 - 131072 - BG1 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 52}, {44, 18}} - - 3 - YES - - -2080374784 - 131072 - BG2 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 32}, {44, 18}} - - 4 - YES - - -2080374784 - 131072 - BG3 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 12}, {44, 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}, {106, 18}} - - 6 - YES - - -2080374784 - 131072 - GPU (All Layers) - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 92}, {44, 18}} - - 7 - YES - - -2080374784 - 131072 - BG0 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 72}, {44, 18}} - - 8 - YES - - -2080374784 - 131072 - BG1 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 52}, {44, 18}} - - 9 - YES - - -2080374784 - 131072 - BG2 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 32}, {44, 18}} - - 10 - YES - - -2080374784 - 131072 - BG3 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{33, 12}, {44, 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, 1178}} - {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 - 1 - - - - 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 - 1 - - - - 268 - {{17, 80}, {111, 18}} - - _NS:682 - YES - - 67108864 - 131072 - Enable for ARM9 - - _NS:682 - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 55}, {111, 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 - 1 - - - - 268 - {{147, 57}, {38, 14}} - - _NS:4068 - YES - - 68157504 - 71435264 - Port: - - _NS:4068 - - - - - NO - 1 - - - - 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}, {1440, 878}} - {1.7976931348623157e+308, 1.7976931348623157e+308} - GDBStubControlPanel - NO - - - - 268 - - YES - - - 268 - {{195, 5}, {226, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 1 - - - 400 - 75 - - - DeSmuME ROM Save (.dsv) - - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - OtherViews - - YES - - - - No$GBA ROM Save (.sav) - - 2147483647 - - - _popUpItemAction: - 1 - - - - - Raw Save File (.sav) - - 2147483647 - - - _popUpItemAction: - 2 - - - - - - 1 - YES - YES - 2 - - NO - - - - 268 - {{17, 11}, {176, 17}} - - YES - - 68157504 - 71304192 - Select ROM Save Format: - - - - - - NO - 1 - - - {450, 35} - NSView - - - 7 - 2 - {{88, 206}, {580, 592}} - 1685586944 - Troubleshooting Form - NSWindow - - - {580, 592} - {580, 592} - - - 256 - {580, 592} - - {{0, 0}, {1440, 878}} - {580, 614} - {580, 614} - YES - - - - 268 - - YES - - - 1292 - {{364, 339}, {32, 32}} - - 28682 - 100 - - - - 265 - {{396, 343}, {168, 28}} - - YES - - 69206017 - 272764928 - TmFtZToKU2VyaWFsOg - - - - - - NO - 1 - - - - 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 - - - {{364, 341}, {30, 30}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 256 - - YES - - - 2304 - - YES - - - 2322 - - 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 - - - {{0, 69}, {523, 202}} - - - - - - - - - - - YES - - - 38 - - - - 523 - 1 - - - 100675459 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {525, 10000000} - - - - {{1, 1}, {523, 202}} - - - - - - 4 - YES - - - - 256 - {{524, 1}, {15, 202}} - - NO - _doScroller: - - - _doScroller: - 0.99248120300751874 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{20, 61}, {540, 204}} - - - 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 - 1 - - - - 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 - 1 - - - - 269 - {{17, 309}, {546, 17}} - - YES - - 68157504 - 272630784 - Tell us what you need help with. - - - - - - NO - 1 - - - - 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 - 1 - - - - 269 - {{17, 539}, {546, 17}} - - YES - - 68157504 - 138413056 - DeSmuME Technical Support Request Form - - - - - - NO - 1 - - - - 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 - 1 - - - - 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 - 1 - - - - 268 - {{17, 347}, {77, 17}} - - YES - - 68157504 - 272630784 - ROM Serial: - - - - - - NO - 1 - - - - 268 - {{17, 377}, {78, 17}} - - YES - - 68157504 - 272630784 - ROM Name: - - - - - - NO - 1 - - - - 266 - {{100, 345}, {256, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 266 - {{100, 375}, {256, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 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 - 1 - - - - 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 - - - {{364, 341}, {30, 30}} - - YES - - 134217728 - 33554432 - - 0 - 3 - 0 - NO - - NO - YES - - - - 256 - - YES - - - 2304 - - YES - - - 2322 - - 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 - - - {{0, 18}, {524, 80}} - - - - - - - - - - - YES - - - 38 - - - - 524 - 1 - - - 100675459 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {531, 10000000} - - - - {{1, 1}, {524, 80}} - - - - - - 4 - YES - - - - 256 - {{525, 1}, {15, 80}} - - NO - _doScroller: - - - _doScroller: - 0.99248120300751874 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{20, 61}, {541, 82}} - - - 133138 - - - - 0.25 - 4 - 1 - - - - 256 - - YES - - - 2304 - - YES - - - 2322 - - 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 - - - {{0, 6}, {523, 80}} - - - - - - - - - - - YES - - - 38 - - - - 523 - 1 - - - 100675459 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 1 - - 6 - {523, 10000000} - - - - {{1, 1}, {523, 80}} - - - - - - 4 - YES - - - - 256 - {{524, 1}, {15, 80}} - - NO - _doScroller: - - - _doScroller: - 0.99248120300751874 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - _doScroller: - - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{20, 167}, {540, 82}} - - - 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 - 1 - - - - 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 - 1 - - - - 256 - {{17, 251}, {206, 14}} - - YES - - 68157504 - 272761856 - Observed Behavior: - - - - - - NO - 1 - - - - 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 - 1 - - - - 269 - {{17, 309}, {546, 17}} - - YES - - 68157504 - 272630784 - Tell us what is happening. - - - - - - NO - 1 - - - - 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 - 1 - - - - 269 - {{17, 539}, {546, 17}} - - YES - - 68157504 - 138413056 - DeSmuME Bug Report Form - - - - - - NO - 1 - - - - 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 - 1 - - - - 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 - 1 - - - - 268 - {{17, 347}, {77, 17}} - - YES - - 68157504 - 272630784 - ROM Serial: - - - - - - NO - 1 - - - - 268 - {{17, 377}, {78, 17}} - - YES - - 68157504 - 272630784 - ROM Name: - - - - - - NO - 1 - - - - 266 - {{100, 345}, {255, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 266 - {{100, 375}, {255, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 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 - 1 - - - - 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 - - - 2304 - - YES - - - 2322 - {538, 443} - - - - - - - - - - - YES - - - 38 - - - - 538 - 1 - - - 100665601 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - - - - - - YES - - YES - NSColor - NSCursor - NSUnderline - - - YES - - - - - - - - 0 - - 6 - {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}} - - - 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.render3DMultisample - cdsGPU.render3DThreads - cdsGPU.render3DFragmentSamplingHack - isGdbStubStarted - enableGdbStubARM9 - enableGdbStubARM7 - gdbStubPortARM9 - gdbStubPortARM7 - isInDebugTrap - - CocoaDSCore - - - - - YES - spuInterpolationMode - spuSyncMode - spuSyncMethod - spuAdvancedLogic - volume - audioOutputEngine - - YES - - - - - YES - isWorking - isRomLoading - statusText - currentVolumeValue - currentVolumeIcon - isShowingSaveStateDialog - isShowingFileMigrationDialog - isUserInterfaceBlockingExecution - currentSaveStateURL - selectedRomSaveTypeID - currentRom - mainWindow - mainWindow.displayRotation - mainWindow.videoFilterType - mainWindow.useBilinearOutput - mainWindow.useVerticalSync - mainWindow.screenshotFileFormat - selectedExportRomSaveID - mainWindow.displayGap - frameJumpType - frameJumpFramesForward - frameJumpToFrame - mainWindow.outputFilter - mainWindow.videoSourceDeposterize - mainWindow.videoFiltersPreferGPU - 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.videoOutputFilter - mainWindow.videoPixelScaler - mainWindow.view.canUseShaderBasedFilters - - 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 - - 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 - - - - - - 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 - - - - - 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 - - - - prefGeneralView - - - - 2093 - - - - 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_DepthComparisonThreshold - - - - - - value: values.Render3D_DepthComparisonThreshold - value - values.Render3D_DepthComparisonThreshold - 2 - - - 3834 - - - - 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 - - - - boxARMBinaries - - - - 3954 - - - - boxFileSystem - - - - 3955 - - - - boxGeneralInfo - - - - 3956 - - - - boxMisc - - - - 3957 - - - - boxTitles - - - - 3958 - - - - 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 - - - - cheatListWindow - - - - 5146 - - - - cheatWindowController - - - - 5147 - - - - 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 - - - - value: selection.romSize - - - - - - value: selection.romSize - value - selection.romSize - - YES - - YES - NSAllowsEditingMultipleValuesSelection - NSRaisesForNotApplicableKeys - - - YES - - - - - 2 - - - 5604 - - - - 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: values.DisplayView_UseVerticalSync - - - - - - value: values.DisplayView_UseVerticalSync - value - values.DisplayView_UseVerticalSync - 2 - - - 6164 - - - - selectedTag: values.DisplayViewCombo_Orientation - - - - - - selectedTag: values.DisplayViewCombo_Orientation - selectedTag - values.DisplayViewCombo_Orientation - 2 - - - 6226 - - - - selectedTag: values.DisplayViewCombo_Order - - - - - - selectedTag: values.DisplayViewCombo_Order - selectedTag - values.DisplayViewCombo_Order - 2 - - - 6230 - - - - 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.Render3D_Multisample - - - - - - value: values.Render3D_Multisample - value - values.Render3D_Multisample - 2 - - - 6625 - - - - 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 - - - - changeCoreEmuFlags: - - - - 6723 - - - - changeCoreEmuFlags: - - - - 6724 - - - - changeCoreEmuFlags: - - - - 6725 - - - - changeCoreEmuFlags: - - - - 6726 - - - - changeCoreEmuFlags: - - - - 6727 - - - - changeCoreEmuFlags: - - - - 6728 - - - - changeCoreEmuFlags: - - - - 6729 - - - - changeCoreEmuFlags: - - - - 6730 - - - - changeCoreEmuFlags: - - - - 6731 - - - - 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 - - - - delegate - - - - 6809 - - - - cdsSoundController - - - - 6824 - - - - romInfoPanelController - - - - 6825 - - - - 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 - - - - 7004 - - - - 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.Render3D_DepthComparisonThreshold - - - - - - value: values.Render3D_DepthComparisonThreshold - value - values.Render3D_DepthComparisonThreshold - 2 - - - 8198 - - - - 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 - - - - saveScreenshotAs: - - - - 8241 - - - - 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 - - - - slot2Window - - - - 8509 - - - - 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 - - - - inputDeviceListController - - - - 8532 - - - - 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 - - - - selectedTag: selection.frameJumpType - - - - - - selectedTag: selection.frameJumpType - selectedTag - selection.frameJumpType - 2 - - - 9096 - - - - value: selection.frameJumpFramesForward - - - - - - value: selection.frameJumpFramesForward - value - selection.frameJumpFramesForward - 2 - - - 9097 - - - - value: selection.frameJumpToFrame - - - - - - value: selection.frameJumpToFrame - value - selection.frameJumpToFrame - 2 - - - 9098 - - - - 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.render3DDepthComparisonThreshold - - - - - - value: selection.cdsGPU.render3DDepthComparisonThreshold - value - selection.cdsGPU.render3DDepthComparisonThreshold - 2 - - - 9174 - - - - value: selection.cdsGPU.render3DDepthComparisonThreshold - - - - - - value: selection.cdsGPU.render3DDepthComparisonThreshold - value - selection.cdsGPU.render3DDepthComparisonThreshold - 2 - - - 9176 - - - - value: selection.cdsGPU.render3DMultisample - - - - - - value: selection.cdsGPU.render3DMultisample - value - selection.cdsGPU.render3DMultisample - 2 - - - 9178 - - - - 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 - - - - makeKeyAndOrderFront: - - - - 9275 - - - - selectedTag: selection.cdsGPU.render3DThreads - - - - - - selectedTag: selection.cdsGPU.render3DThreads - selectedTag - selection.cdsGPU.render3DThreads - 2 - - - 9298 - - - - value: selection.mainWindow.view.useVerticalSync - - - - - - value: selection.mainWindow.view.useVerticalSync - value - selection.mainWindow.view.useVerticalSync - 2 - - - 9318 - - - - value: selection.mainWindow.videoSourceDeposterize - - - - - - value: selection.mainWindow.videoSourceDeposterize - value - selection.mainWindow.videoSourceDeposterize - 2 - - - 9319 - - - - selectedTag: selection.mainWindow.videoOutputFilter - - - - - - selectedTag: selection.mainWindow.videoOutputFilter - selectedTag - selection.mainWindow.videoOutputFilter - 2 - - - 9320 - - - - selectedTag: selection.mainWindow.videoPixelScaler - - - - - - selectedTag: selection.mainWindow.videoPixelScaler - selectedTag - selection.mainWindow.videoPixelScaler - 2 - - - 9321 - - - - value: selection.mainWindow.videoFiltersPreferGPU - - - - - - value: selection.mainWindow.videoFiltersPreferGPU - value - selection.mainWindow.videoFiltersPreferGPU - 2 - - - 9322 - - - - 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 - - - - - 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 - - - - - 833 - - - YES - - - - - - 834 - - - - - 835 - - - YES - - - - - - 836 - - - - - 843 - - - YES - - - - - - 844 - - - - - 845 - - - YES - - - - - - 846 - - - - - 850 - - - - - 855 - - - - - 861 - - - YES - - - - - - 862 - - - YES - - - - - - - - - - - 865 - - - YES - - - - - - 866 - - - - - 872 - - - YES - - - - - - - - - - - - - 875 - - - YES - - - - - - - - - - - - - - - - - 876 - - - YES - - - - - - - - - - - - - - - - - - - - - 877 - - - YES - - - - - - - - - - - - - 878 - - - YES - - - - - - - - - 879 - - - YES - - - - - - 880 - - - - - 883 - - - YES - - - - - - 884 - - - - - 885 - - - YES - - - - - - 886 - - - - - 887 - - - YES - - - - - - 888 - - - - - 889 - - - YES - - - - - - 890 - - - - - 897 - - - YES - - - - - - 898 - - - - - 899 - - - YES - - - - - - 900 - - - - - 901 - - - YES - - - - - - 902 - - - - - 903 - - - YES - - - - - - 904 - - - - - 905 - - - YES - - - - - - 906 - - - - - 907 - - - YES - - - - - - 908 - - - - - 909 - - - YES - - - - - - 910 - - - - - 911 - - - YES - - - - - - 912 - - - - - 913 - - - YES - - - - - - 914 - - - YES - - - - - 924 - - - YES - - - - - - 925 - - - - - 926 - - - YES - - - - - - 927 - - - - - 928 - - - YES - - - - - - 929 - - - - - 930 - - - YES - - - - - - 931 - - - - - 932 - - - YES - - - - - - 933 - - - - - 934 - - - YES - - - - - - 935 - - - - - 936 - - - YES - - - - - - 937 - - - - - 938 - - - YES - - - - - - 939 - - - - - 940 - - - YES - - - - - - 941 - - - - - 942 - - - YES - - - - - - 943 - - - - - 944 - - - YES - - - - - - 945 - - - - - 946 - - - YES - - - - - - 947 - - - - - 948 - - - YES - - - - - - 951 - - - - - 949 - - - YES - - - - - - 950 - - - - - 952 - - - YES - - - - - - 953 - - - YES - - - - - - 954 - - - - - 955 - - - - - 956 - - - YES - - - - - - 957 - - - YES - - - - - - 958 - - - - - 959 - - - - - 960 - - - YES - - - - - - 961 - - - YES - - - - - - 962 - - - - - 963 - - - - - 964 - - - YES - - - - - - 967 - - - - - 965 - - - YES - - - - - - 966 - - - - - 968 - - - YES - - - - - - 969 - - - YES - - - - - - 970 - - - - - 971 - - - - - 1034 - - - YES - - - - - - 1035 - - - - - 1036 - - - YES - - - - - - 1037 - - - - - 1038 - - - YES - - - - - - 1039 - - - - - 1040 - - - YES - - - - - - 1041 - - - - - 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 - - - - - - - - - - - - - - 1626 - - - YES - - - - - - 1627 - - - YES - - - - - - 1628 - - - YES - - - - - - - - - - - - - - - - - - - - - - - 1629 - - - - - 1630 - - - - - 1631 - - - - - 1634 - - - YES - - - - - - 1635 - - - - - 1636 - - - - - 1637 - - - - - 1638 - - - - - 1639 - - - - - 1640 - - - - - 1641 - - - - - 1643 - - - - - 1646 - - - - - 1647 - - - - - 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 - - - 2809 - - - YES - - - - - - 2810 - - - - - 2811 - - - YES - - - - - - 2812 - - - - - 2813 - - - YES - - - - - - 2814 - - - - - 2815 - - - YES - - - - - - 2816 - - - YES - - - - - - 2817 - - - YES - - - - - - 2818 - - - - - 2819 - - - - - 2820 - - - - - 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 - - - - - 3644 - - - - - 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 - - - - - - 3787 - - - YES - - - - - - 3788 - - - 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 - - - - - - - - - - - - - - - 3775 - - - YES - - - - - - 3773 - - - YES - - - - - - 3771 - - - YES - - - - - - 3779 - - - YES - - - - Depth Comparison Threshold Text Field - - - 3782 - - - YES - - - - - - 3783 - - - - - 3780 - - - YES - - - - - - 3781 - - - - - 3772 - - - - - 3774 - - - - - 3776 - - - - - 3793 - - - YES - - - - - - 3794 - - - - - 3798 - - - YES - - - - - - - - - - - - - - - 3803 - - - YES - - - - - - 3802 - - - YES - - - - - - 3801 - - - YES - - - - - - 3800 - - - YES - - - - - - 3799 - - - YES - - - - - - 3811 - - - - - 3809 - - - YES - - - - - - 3810 - - - - - 3808 - - - - - 3807 - - - - - 3806 - - - - - 3837 - - - YES - - - - - - 3838 - - - YES - - - - - - - - - 3839 - - - - - 3840 - - - - - 3841 - - - - - 3843 - - - YES - - - - - - 3844 - - - YES - - - - - - 3845 - - - YES - - - - - - - - 3846 - - - - - 3847 - - - - - 3849 - - - YES - - - - - - 3850 - - - - - 3885 - - - YES - - - - - - 3899 - - - 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 - - - - - 2553 - - - - - 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 - - - - - 6159 - - - YES - - - - - - 6160 - - - - - 6161 - - - YES - - - - - - 6162 - - - - - 6168 - - - YES - - - - - - 6169 - - - YES - - - - - - - 6170 - - - - - 6171 - - - YES - - - - - - 6172 - - - YES - - - - - - - 6173 - - - - - 6174 - - - - - 6177 - - - - - 6180 - - - YES - - - - - - - - - - - - - - - 6182 - - - YES - - - - - - 6183 - - - YES - - - - - - 6184 - - - YES - - - - - - - - 6185 - - - - - 6186 - - - - - 6187 - - - - - 6188 - - - YES - - - - - - - - 6189 - - - - - 6190 - - - - - 6191 - - - - - 6233 - - - - - 6234 - - - - - 3777 - - - YES - - - - - - 3778 - - - - - 3804 - - - YES - - - - - - 3805 - - - - - 6238 - - - - - 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 - - - - - - 6618 - - - YES - - - - - - 6619 - - - - - 6622 - - - YES - - - - - - 6623 - - - YES - - - - - - 6624 - - - - - 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 - - - - - 2344 - - - YES - - - - - - - 2369 - - - YES - - - - - - 2367 - - - YES - - - - - - 2368 - - - - - 2370 - - - - - 5186 - - - YES - - - - - - 5188 - - - YES - - - - - - 5189 - - - - - 8186 - - - - - 8188 - - - YES - - - - - - 8189 - - - - - 8194 - - - YES - - - - - - 8195 - - - - - 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 - - - - - - - - - 9038 - - - - - 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 - - - - - 9144 - - - - - 9146 - - - - - 9148 - - - - - 9150 - - - - - 3900 - - - YES - - - - - - 3901 - - - - - 9152 - - - YES - - - - - - 9153 - - - - - 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 - - - - - 3888 - - - YES - - - - - - 3889 - - - YES - - - - - - 3890 - - - YES - - - - - - - - - - - - 6634 - - - - - 3891 - - - - - 3892 - - - - - 3893 - - - - - 3894 - - - - - 3896 - - - YES - - - - - - 3897 - - - - - 9259 - - - - - 9260 - - - - - 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 - - - - - - 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 - - - - - - - YES - - YES - -1.IBPluginDependency - -2.IBPluginDependency - -3.IBPluginDependency - 1034.IBPluginDependency - 1035.IBPluginDependency - 1036.IBPluginDependency - 1037.IBPluginDependency - 1038.IBPluginDependency - 1039.IBPluginDependency - 1040.IBPluginDependency - 1041.IBPluginDependency - 1113.IBPluginDependency - 1114.IBPluginDependency - 1115.IBPluginDependency - 1118.IBPluginDependency - 1119.IBPluginDependency - 112.IBPluginDependency - 1120.IBPluginDependency - 124.IBPluginDependency - 125.IBEditorWindowLastContentRect - 125.IBPluginDependency - 126.IBPluginDependency - 129.IBPluginDependency - 1298.IBEditorWindowLastContentRect - 1298.IBPluginDependency - 1299.IBAttributePlaceholdersKey - 1299.IBPluginDependency - 1299.IBViewBoundsToFrameTransform - 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.IBEditorWindowLastContentRect - 1527.IBPluginDependency - 1528.IBPluginDependency - 1529.IBPluginDependency - 1530.IBPluginDependency - 1531.IBPluginDependency - 1532.IBPluginDependency - 1538.IBPluginDependency - 1538.IBViewBoundsToFrameTransform - 1541.IBPluginDependency - 1541.IBViewBoundsToFrameTransform - 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.IBPluginDependency - 1615.IBAttributePlaceholdersKey - 1615.IBPluginDependency - 1615.IBViewBoundsToFrameTransform - 1616.IBPluginDependency - 1619.IBPluginDependency - 1620.IBPluginDependency - 1621.IBPluginDependency - 1626.IBAttributePlaceholdersKey - 1626.IBPluginDependency - 1626.IBViewBoundsToFrameTransform - 1627.IBPluginDependency - 1628.IBEditorWindowLastContentRect - 1628.IBPluginDependency - 1629.IBPluginDependency - 1630.IBPluginDependency - 1631.IBPluginDependency - 1634.IBPluginDependency - 1634.IBViewBoundsToFrameTransform - 1635.IBPluginDependency - 1636.IBPluginDependency - 1637.IBPluginDependency - 1638.IBPluginDependency - 1639.IBPluginDependency - 1640.IBPluginDependency - 1641.IBPluginDependency - 1643.IBPluginDependency - 1646.IBPluginDependency - 1647.IBPluginDependency - 1650.IBPluginDependency - 1650.IBViewBoundsToFrameTransform - 1651.IBPluginDependency - 1679.IBPluginDependency - 1679.designableToolbarItemIdentifier - 1679.toolbarItem.selectable - 1680.IBPluginDependency - 1680.designableToolbarItemIdentifier - 1680.toolbarItem.selectable - 1681.IBPluginDependency - 1681.designableToolbarItemIdentifier - 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 - 2155.IBPluginDependency - 2246.IBPluginDependency - 2246.designableToolbarItemIdentifier - 2246.toolbarItem.selectable - 2248.IBEditorWindowLastContentRect - 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.IBPluginDependency - 2340.IBPluginDependency - 2340.designableToolbarItemIdentifier - 2340.toolbarItem.selectable - 2341.IBPluginDependency - 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.IBEditorWindowLastContentRect - 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.IBEditorWindowLastContentRect - 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 - 2553.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 - 3061.IBViewBoundsToFrameTransform - 3062.IBPluginDependency - 3063.IBPluginDependency - 3063.IBViewBoundsToFrameTransform - 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.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 - 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.IBPluginDependency - 3712.IBWindowTemplateEditedContentRect - 3712.NSWindowTemplate.visibleAtLaunch - 3713.IBPluginDependency - 3714.IBAttributePlaceholdersKey - 3714.IBPluginDependency - 3715.IBPluginDependency - 3716.IBPluginDependency - 3717.IBPluginDependency - 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 - 3774.IBPluginDependency - 3775.IBAttributePlaceholdersKey - 3775.IBPluginDependency - 3776.IBPluginDependency - 3777.IBAttributePlaceholdersKey - 3777.IBPluginDependency - 3777.IBViewBoundsToFrameTransform - 3778.IBPluginDependency - 3779.IBAttributePlaceholdersKey - 3779.IBPluginDependency - 3779.IBViewBoundsToFrameTransform - 3780.IBPluginDependency - 3781.IBNumberFormatterBehaviorMetadataKey - 3781.IBNumberFormatterLocalizesFormatMetadataKey - 3781.IBPluginDependency - 3782.IBPluginDependency - 3782.IBViewBoundsToFrameTransform - 3783.IBPluginDependency - 3784.IBPluginDependency - 3784.IBViewBoundsToFrameTransform - 3786.IBPluginDependency - 3786.IBViewBoundsToFrameTransform - 3787.IBPluginDependency - 3788.IBPluginDependency - 3789.IBPluginDependency - 3790.IBEditorWindowLastContentRect - 3790.IBPluginDependency - 3790.IBWindowTemplateEditedContentRect - 3790.NSWindowTemplate.visibleAtLaunch - 3791.IBPluginDependency - 3793.IBPluginDependency - 3793.IBViewBoundsToFrameTransform - 3794.IBPluginDependency - 3798.IBPluginDependency - 3798.IBViewBoundsToFrameTransform - 3799.IBPluginDependency - 3799.IBViewBoundsToFrameTransform - 3800.IBAttributePlaceholdersKey - 3800.IBPluginDependency - 3800.IBViewBoundsToFrameTransform - 3801.IBAttributePlaceholdersKey - 3801.IBPluginDependency - 3801.IBViewBoundsToFrameTransform - 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 - 3809.IBPluginDependency - 3810.IBNumberFormatterBehaviorMetadataKey - 3810.IBNumberFormatterLocalizesFormatMetadataKey - 3810.IBPluginDependency - 3811.IBPluginDependency - 3837.IBPluginDependency - 3838.IBPluginDependency - 3838.IBViewBoundsToFrameTransform - 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.IBPluginDependency - 3885.IBViewBoundsToFrameTransform - 3886.IBAttributePlaceholdersKey - 3886.IBPluginDependency - 3886.IBViewBoundsToFrameTransform - 3887.IBPluginDependency - 3888.IBAttributePlaceholdersKey - 3888.IBPluginDependency - 3888.IBViewBoundsToFrameTransform - 3889.IBPluginDependency - 3890.IBEditorWindowLastContentRect - 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.IBPluginDependency - 3899.IBViewBoundsToFrameTransform - 3900.IBAttributePlaceholdersKey - 3900.IBPluginDependency - 3900.IBViewBoundsToFrameTransform - 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.IBEditorWindowLastContentRect - 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 - 4278.IBPluginDependency - 4559.IBPluginDependency - 4560.IBPluginDependency - 4561.IBPluginDependency - 4562.IBPluginDependency - 4565.IBPluginDependency - 4574.IBPluginDependency - 4575.IBPluginDependency - 4576.IBEditorWindowLastContentRect - 4576.IBPluginDependency - 4577.IBPluginDependency - 4578.IBPluginDependency - 4580.IBPluginDependency - 4581.IBPluginDependency - 4582.IBPluginDependency - 4583.IBPluginDependency - 4583.IBViewBoundsToFrameTransform - 4584.IBPluginDependency - 4585.IBEditorWindowLastContentRect - 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.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.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 - 5003.IBViewBoundsToFrameTransform - 5004.IBPluginDependency - 5005.IBPluginDependency - 5006.IBPluginDependency - 5007.IBPluginDependency - 5008.IBPluginDependency - 5009.IBPluginDependency - 5066.IBPluginDependency - 5067.IBPluginDependency - 5068.IBAttributePlaceholdersKey - 5068.IBPluginDependency - 5069.IBPluginDependency - 5080.IBEditorWindowLastContentRect - 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 - 5171.IBViewBoundsToFrameTransform - 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.IBEditorWindowLastContentRect - 539.IBPluginDependency - 541.IBPluginDependency - 5419.IBPluginDependency - 542.IBEditorWindowLastContentRect - 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.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 - 6159.IBAttributePlaceholdersKey - 6159.IBPluginDependency - 6159.IBViewBoundsToFrameTransform - 6160.IBPluginDependency - 6161.IBAttributePlaceholdersKey - 6161.IBPluginDependency - 6161.IBViewBoundsToFrameTransform - 6162.IBPluginDependency - 6168.IBPluginDependency - 6169.IBEditorWindowLastContentRect - 6169.IBPluginDependency - 6170.IBPluginDependency - 6171.IBPluginDependency - 6172.IBEditorWindowLastContentRect - 6172.IBPluginDependency - 6173.IBPluginDependency - 6174.IBPluginDependency - 6177.IBPluginDependency - 6180.IBPluginDependency - 6182.IBPluginDependency - 6183.IBPluginDependency - 6184.IBPluginDependency - 6185.IBAttributePlaceholdersKey - 6185.IBPluginDependency - 6186.IBAttributePlaceholdersKey - 6186.IBPluginDependency - 6187.IBPluginDependency - 6188.IBPluginDependency - 6189.IBPluginDependency - 6190.IBAttributePlaceholdersKey - 6190.IBPluginDependency - 6191.IBAttributePlaceholdersKey - 6191.IBPluginDependency - 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.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.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 - 6618.IBAttributePlaceholdersKey - 6618.IBPluginDependency - 6619.IBPluginDependency - 6622.IBPluginDependency - 6622.IBViewBoundsToFrameTransform - 6623.IBAttributePlaceholdersKey - 6623.IBPluginDependency - 6624.IBPluginDependency - 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.IBEditorWindowLastContentRect - 7171.IBPluginDependency - 7171.IBWindowTemplateEditedContentRect - 7171.NSWindowTemplate.visibleAtLaunch - 7172.IBPluginDependency - 7173.IBEditorWindowLastContentRect - 7173.IBPluginDependency - 7173.IBWindowTemplateEditedContentRect - 7173.NSWindowTemplate.visibleAtLaunch - 7174.IBPluginDependency - 7175.IBEditorWindowLastContentRect - 7175.IBPluginDependency - 7175.IBWindowTemplateEditedContentRect - 7175.NSWindowTemplate.visibleAtLaunch - 7176.IBPluginDependency - 7179.IBEditorWindowLastContentRect - 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.IBEditorWindowLastContentRect - 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 - 7293.IBViewBoundsToFrameTransform - 7294.IBNumberFormatterBehaviorMetadataKey - 7294.IBNumberFormatterLocalizesFormatMetadataKey - 7294.IBPluginDependency - 7295.IBNumberFormatterBehaviorMetadataKey - 7295.IBNumberFormatterLocalizesFormatMetadataKey - 7295.IBPluginDependency - 7301.IBPluginDependency - 7301.IBViewBoundsToFrameTransform - 7302.IBPluginDependency - 7305.IBPluginDependency - 7305.IBViewBoundsToFrameTransform - 7308.IBPluginDependency - 7309.IBPluginDependency - 7312.IBPluginDependency - 7313.IBPluginDependency - 7316.IBPluginDependency - 7317.IBPluginDependency - 7320.IBPluginDependency - 7353.IBPluginDependency - 7354.IBPluginDependency - 7355.IBPluginDependency - 7358.IBPluginDependency - 7358.IBViewBoundsToFrameTransform - 7359.IBPluginDependency - 7392.IBPluginDependency - 7392.IBViewBoundsToFrameTransform - 7393.IBPluginDependency - 7395.IBPluginDependency - 7395.IBViewBoundsToFrameTransform - 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 - 7442.IBViewBoundsToFrameTransform - 7443.IBPluginDependency - 7445.IBPluginDependency - 7445.IBViewBoundsToFrameTransform - 7446.IBPluginDependency - 7449.IBEditorWindowLastContentRect - 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.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.IBEditorWindowLastContentRect - 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 - 7805.IBPluginDependency - 7806.IBPluginDependency - 7807.IBPluginDependency - 7808.IBPluginDependency - 7809.IBPluginDependency - 7810.IBPluginDependency - 7811.IBPluginDependency - 7812.IBPluginDependency - 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 - 7837.IBPluginDependency - 7838.IBPluginDependency - 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 - 7848.IBPluginDependency - 785.IBPluginDependency - 7855.IBEditorWindowLastContentRect - 7855.IBPluginDependency - 7855.IBWindowTemplateEditedContentRect - 7855.NSWindowTemplate.visibleAtLaunch - 7856.IBPluginDependency - 7857.IBPluginDependency - 7857.IBViewBoundsToFrameTransform - 7858.IBPluginDependency - 7859.IBPluginDependency - 7860.IBPluginDependency - 7861.IBPluginDependency - 7862.IBAttributePlaceholdersKey - 7862.IBPluginDependency - 7863.IBPluginDependency - 7863.IBViewBoundsToFrameTransform - 7864.IBPluginDependency - 7866.IBAttributePlaceholdersKey - 7866.IBPluginDependency - 7866.IBViewBoundsToFrameTransform - 7867.IBPluginDependency - 787.IBPluginDependency - 7871.IBAttributePlaceholdersKey - 7871.IBPluginDependency - 7871.IBViewBoundsToFrameTransform - 7872.IBPluginDependency - 7873.IBAttributePlaceholdersKey - 7873.IBPluginDependency - 7873.IBViewBoundsToFrameTransform - 7874.IBPluginDependency - 7875.IBPluginDependency - 7875.IBViewBoundsToFrameTransform - 7876.IBPluginDependency - 7879.IBPluginDependency - 7879.IBViewBoundsToFrameTransform - 788.IBEditorWindowLastContentRect - 788.IBPluginDependency - 7880.IBPluginDependency - 7880.IBViewBoundsToFrameTransform - 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.IBPluginDependency - 796.IBWindowTemplateEditedContentRect - 796.NSWindowTemplate.visibleAtLaunch - 797.IBPluginDependency - 7971.IBPluginDependency - 7971.IBViewBoundsToFrameTransform - 7972.IBPluginDependency - 7972.IBViewBoundsToFrameTransform - 7973.IBPluginDependency - 7974.IBPluginDependency - 7978.IBPluginDependency - 7978.IBViewBoundsToFrameTransform - 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 - 8009.IBViewBoundsToFrameTransform - 8012.IBPluginDependency - 8013.IBPluginDependency - 8014.IBPluginDependency - 8015.IBPluginDependency - 8016.IBPluginDependency - 8021.IBPluginDependency - 8022.IBPluginDependency - 8023.IBPluginDependency - 8024.IBPluginDependency - 8025.IBPluginDependency - 8030.IBPluginDependency - 8030.IBViewBoundsToFrameTransform - 8031.IBPluginDependency - 8031.IBViewBoundsToFrameTransform - 8032.IBPluginDependency - 8032.IBViewBoundsToFrameTransform - 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.IBPluginDependency - 8182.IBPluginDependency - 8183.IBPluginDependency - 8184.IBPluginDependency - 8185.IBPluginDependency - 8186.IBPluginDependency - 8188.IBPluginDependency - 8188.IBViewBoundsToFrameTransform - 8189.IBPluginDependency - 8194.IBPluginDependency - 8194.IBViewBoundsToFrameTransform - 8195.IBPluginDependency - 823.IBPluginDependency - 824.IBPluginDependency - 8245.IBPluginDependency - 8246.IBEditorWindowLastContentRect - 8246.IBPluginDependency - 825.IBPluginDependency - 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 - 828.IBPluginDependency - 829.IBPluginDependency - 8295.IBPluginDependency - 83.IBPluginDependency - 830.IBPluginDependency - 8302.IBAttributePlaceholdersKey - 8302.IBPluginDependency - 8302.IBViewBoundsToFrameTransform - 8303.IBPluginDependency - 8307.IBPluginDependency - 8308.IBPluginDependency - 8308.IBViewBoundsToFrameTransform - 8309.IBPluginDependency - 831.IBPluginDependency - 8310.IBPluginDependency - 8316.IBPluginDependency - 832.IBPluginDependency - 8322.IBAttributePlaceholdersKey - 8322.IBPluginDependency - 8322.IBViewBoundsToFrameTransform - 8323.IBPluginDependency - 833.IBPluginDependency - 8331.IBEditorWindowLastContentRect - 8331.IBPluginDependency - 8331.IBWindowTemplateEditedContentRect - 8331.NSWindowTemplate.visibleAtLaunch - 8332.IBPluginDependency - 8333.IBPluginDependency - 8333.IBViewBoundsToFrameTransform - 8334.IBPluginDependency - 8335.IBPluginDependency - 8336.IBPluginDependency - 8338.IBPluginDependency - 834.IBPluginDependency - 8341.IBPluginDependency - 8343.IBPluginDependency - 8343.IBViewBoundsToFrameTransform - 8344.IBPluginDependency - 8344.IBViewBoundsToFrameTransform - 8345.IBAttributePlaceholdersKey - 8345.IBPluginDependency - 8345.IBViewBoundsToFrameTransform - 8346.IBPluginDependency - 835.IBPluginDependency - 8352.IBPluginDependency - 8354.IBPluginDependency - 8356.IBPluginDependency - 836.IBPluginDependency - 8363.IBPluginDependency - 8363.IBViewBoundsToFrameTransform - 8364.IBPluginDependency - 8365.IBPluginDependency - 8365.IBViewBoundsToFrameTransform - 8366.IBEditorWindowLastContentRect - 8366.IBPluginDependency - 8366.IBViewBoundsToFrameTransform - 8367.IBPluginDependency - 8367.IBViewBoundsToFrameTransform - 8368.IBPluginDependency - 8369.IBEditorWindowLastContentRect - 8369.IBPluginDependency - 8369.IBViewBoundsToFrameTransform - 8377.IBPluginDependency - 8377.IBViewBoundsToFrameTransform - 8378.IBPluginDependency - 8379.IBEditorWindowLastContentRect - 8379.IBPluginDependency - 8380.IBPluginDependency - 8381.IBPluginDependency - 8382.IBPluginDependency - 8383.IBPluginDependency - 8384.IBPluginDependency - 8385.IBPluginDependency - 8386.IBPluginDependency - 8387.IBPluginDependency - 8387.IBViewBoundsToFrameTransform - 8388.IBPluginDependency - 8402.IBEditorWindowLastContentRect - 8402.IBPluginDependency - 8402.IBViewBoundsToFrameTransform - 8405.IBEditorWindowLastContentRect - 8405.IBPluginDependency - 8405.IBViewBoundsToFrameTransform - 8408.IBEditorWindowLastContentRect - 8408.IBPluginDependency - 8408.IBViewBoundsToFrameTransform - 8409.IBPluginDependency - 8409.IBViewBoundsToFrameTransform - 8410.IBPluginDependency - 8411.IBPluginDependency - 8411.IBViewBoundsToFrameTransform - 8412.IBPluginDependency - 8413.IBPluginDependency - 8413.IBViewBoundsToFrameTransform - 8414.IBPluginDependency - 8415.IBPluginDependency - 8415.IBViewBoundsToFrameTransform - 8416.IBPluginDependency - 8427.IBPluginDependency - 8427.IBViewBoundsToFrameTransform - 8428.IBEditorWindowLastContentRect - 8428.IBPluginDependency - 8428.IBViewBoundsToFrameTransform - 843.IBPluginDependency - 844.IBPluginDependency - 8445.IBEditorWindowLastContentRect - 8445.IBPluginDependency - 8445.IBViewBoundsToFrameTransform - 8446.IBPluginDependency - 8446.IBViewBoundsToFrameTransform - 8447.IBPluginDependency - 8448.IBEditorWindowLastContentRect - 8448.IBPluginDependency - 8448.IBViewBoundsToFrameTransform - 845.IBPluginDependency - 845.IBViewBoundsToFrameTransform - 8451.IBEditorWindowLastContentRect - 8451.IBPluginDependency - 8451.IBViewBoundsToFrameTransform - 8454.IBEditorWindowLastContentRect - 8454.IBPluginDependency - 8454.IBViewBoundsToFrameTransform - 8455.IBPluginDependency - 8455.IBViewBoundsToFrameTransform - 8456.IBPluginDependency - 8457.IBPluginDependency - 8457.IBViewBoundsToFrameTransform - 8458.IBPluginDependency - 846.IBPluginDependency - 8477.IBPluginDependency - 8477.IBViewBoundsToFrameTransform - 8478.IBPluginDependency - 8499.IBPluginDependency - 8499.IBViewBoundsToFrameTransform - 850.IBPluginDependency - 8500.IBPluginDependency - 8501.IBAttributePlaceholdersKey - 8501.IBPluginDependency - 8501.IBViewBoundsToFrameTransform - 8502.IBPluginDependency - 8512.IBPluginDependency - 8512.IBViewBoundsToFrameTransform - 8513.IBPluginDependency - 8514.IBPluginDependency - 8515.IBPluginDependency - 8517.IBPluginDependency - 8518.IBPluginDependency - 8519.IBPluginDependency - 8523.IBPluginDependency - 8525.IBPluginDependency - 8525.IBViewBoundsToFrameTransform - 8526.IBPluginDependency - 8527.IBPluginDependency - 8535.IBPluginDependency - 855.IBPluginDependency - 8552.IBEditorWindowLastContentRect - 8552.IBPluginDependency - 8552.IBViewBoundsToFrameTransform - 8553.IBPluginDependency - 8553.IBViewBoundsToFrameTransform - 8554.IBPluginDependency - 8557.IBPluginDependency - 8557.IBViewBoundsToFrameTransform - 8558.IBPluginDependency - 8558.IBViewBoundsToFrameTransform - 8559.IBPluginDependency - 8559.IBViewBoundsToFrameTransform - 8560.IBPluginDependency - 8561.IBPluginDependency - 8568.IBPluginDependency - 8568.IBViewBoundsToFrameTransform - 8569.IBPluginDependency - 8569.IBViewBoundsToFrameTransform - 8570.IBPluginDependency - 8571.IBPluginDependency - 8571.IBViewBoundsToFrameTransform - 8572.IBPluginDependency - 8575.IBPluginDependency - 8575.IBViewBoundsToFrameTransform - 8576.IBPluginDependency - 8578.IBPluginDependency - 8578.IBViewBoundsToFrameTransform - 8579.IBPluginDependency - 8596.IBEditorWindowLastContentRect - 8596.IBPluginDependency - 8596.IBWindowTemplateEditedContentRect - 8596.NSWindowTemplate.visibleAtLaunch - 8597.IBPluginDependency - 8598.IBPluginDependency - 8598.IBViewBoundsToFrameTransform - 8599.IBPluginDependency - 8608.IBPluginDependency - 8608.IBViewBoundsToFrameTransform - 8609.IBPluginDependency - 861.IBEditorWindowLastContentRect - 861.IBPluginDependency - 861.IBWindowTemplateEditedContentRect - 861.NSWindowTemplate.visibleAtLaunch - 8610.IBPluginDependency - 8610.IBViewBoundsToFrameTransform - 8611.IBPluginDependency - 8612.IBPluginDependency - 8612.IBViewBoundsToFrameTransform - 862.IBPluginDependency - 8635.IBNumberFormatterBehaviorMetadataKey - 8635.IBNumberFormatterLocalizesFormatMetadataKey - 8635.IBNumberFormatterSampleNumberKey - 8635.IBPluginDependency - 8638.IBPluginDependency - 8638.IBViewBoundsToFrameTransform - 8639.IBPluginDependency - 8639.IBViewBoundsToFrameTransform - 8640.IBPluginDependency - 8641.IBPluginDependency - 865.IBPluginDependency - 8653.IBPluginDependency - 8653.IBViewBoundsToFrameTransform - 8654.IBPluginDependency - 8655.IBPluginDependency - 8655.IBViewBoundsToFrameTransform - 8656.IBPluginDependency - 866.IBPluginDependency - 8660.IBPluginDependency - 8660.IBViewBoundsToFrameTransform - 8661.IBPluginDependency - 8663.IBPluginDependency - 8663.IBViewBoundsToFrameTransform - 8664.IBPluginDependency - 8667.IBPluginDependency - 8667.IBViewBoundsToFrameTransform - 8668.IBPluginDependency - 8677.IBPluginDependency - 8677.IBViewBoundsToFrameTransform - 8678.IBPluginDependency - 8679.IBPluginDependency - 8679.IBViewBoundsToFrameTransform - 8680.IBPluginDependency - 8681.IBPluginDependency - 8681.IBViewBoundsToFrameTransform - 8682.IBPluginDependency - 8687.IBPluginDependency - 8687.IBViewBoundsToFrameTransform - 8688.IBPluginDependency - 8688.IBViewBoundsToFrameTransform - 8689.IBPluginDependency - 8689.IBViewBoundsToFrameTransform - 8690.IBPluginDependency - 8691.IBPluginDependency - 8692.IBPluginDependency - 8706.IBPluginDependency - 8706.IBViewBoundsToFrameTransform - 8707.IBPluginDependency - 8718.IBPluginDependency - 8718.IBViewBoundsToFrameTransform - 8719.IBPluginDependency - 872.IBPluginDependency - 8722.IBPluginDependency - 8722.IBViewBoundsToFrameTransform - 8723.IBPluginDependency - 8724.IBPluginDependency - 8724.IBViewBoundsToFrameTransform - 8725.IBPluginDependency - 8727.IBPluginDependency - 8727.IBViewBoundsToFrameTransform - 8730.IBPluginDependency - 8730.IBViewBoundsToFrameTransform - 8731.IBPluginDependency - 8735.IBPluginDependency - 8735.IBViewBoundsToFrameTransform - 8736.IBPluginDependency - 8739.IBPluginDependency - 8740.IBPluginDependency - 8741.IBPluginDependency - 8741.IBViewBoundsToFrameTransform - 8742.IBPluginDependency - 8742.IBViewBoundsToFrameTransform - 8743.IBPluginDependency - 8744.IBPluginDependency - 8746.IBPluginDependency - 8746.IBViewBoundsToFrameTransform - 8747.IBPluginDependency - 875.IBPluginDependency - 8758.IBPluginDependency - 876.IBPluginDependency - 877.IBPluginDependency - 878.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 - 8993.IBViewBoundsToFrameTransform - 8994.IBPluginDependency - 8995.IBAttributePlaceholdersKey - 8995.IBPluginDependency - 8995.IBViewBoundsToFrameTransform - 8996.IBPluginDependency - 8997.IBAttributePlaceholdersKey - 8997.IBPluginDependency - 8997.IBViewBoundsToFrameTransform - 8998.IBPluginDependency - 900.IBPluginDependency - 9001.IBAttributePlaceholdersKey - 9001.IBPluginDependency - 9001.IBViewBoundsToFrameTransform - 9002.IBPluginDependency - 9007.IBPluginDependency - 901.IBPluginDependency - 9019.IBAttributePlaceholdersKey - 9019.IBPluginDependency - 9019.IBViewBoundsToFrameTransform - 902.IBPluginDependency - 9020.IBPluginDependency - 903.IBPluginDependency - 9032.IBPluginDependency - 9032.IBViewBoundsToFrameTransform - 9033.IBPluginDependency - 9034.IBPluginDependency - 9034.IBViewBoundsToFrameTransform - 9035.IBPluginDependency - 9036.IBPluginDependency - 9037.IBPluginDependency - 9039.IBPluginDependency - 9039.IBViewBoundsToFrameTransform - 904.IBPluginDependency - 9040.IBPluginDependency - 9041.IBPluginDependency - 9041.IBViewBoundsToFrameTransform - 9042.IBPluginDependency - 9042.IBViewBoundsToFrameTransform - 9043.IBPluginDependency - 9043.IBViewBoundsToFrameTransform - 9044.IBPluginDependency - 9044.IBViewBoundsToFrameTransform - 9045.IBPluginDependency - 9045.IBViewBoundsToFrameTransform - 9046.IBPluginDependency - 9046.IBViewBoundsToFrameTransform - 9047.IBPluginDependency - 9047.IBViewBoundsToFrameTransform - 9049.IBPluginDependency - 9049.IBViewBoundsToFrameTransform - 905.IBPluginDependency - 9050.IBPluginDependency - 9050.IBViewBoundsToFrameTransform - 9051.IBPluginDependency - 9051.IBViewBoundsToFrameTransform - 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 - 9071.IBViewBoundsToFrameTransform - 9072.IBPluginDependency - 9072.IBViewBoundsToFrameTransform - 9075.IBPluginDependency - 9075.IBViewBoundsToFrameTransform - 9076.IBPluginDependency - 908.IBPluginDependency - 9083.IBPluginDependency - 9084.IBPluginDependency - 9085.IBPluginDependency - 9086.IBPluginDependency - 9087.IBPluginDependency - 9087.IBViewBoundsToFrameTransform - 9088.IBPluginDependency - 9089.IBPluginDependency - 9089.IBViewBoundsToFrameTransform - 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 - 9106.IBViewBoundsToFrameTransform - 9107.IBPluginDependency - 9109.IBPluginDependency - 9109.IBViewBoundsToFrameTransform - 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 - 9152.IBViewBoundsToFrameTransform - 9153.IBPluginDependency - 9156.IBAttributePlaceholdersKey - 9156.IBPluginDependency - 9156.IBViewBoundsToFrameTransform - 9157.IBPluginDependency - 9184.IBAttributePlaceholdersKey - 9184.IBPluginDependency - 9184.IBViewBoundsToFrameTransform - 9185.IBPluginDependency - 9185.IBViewBoundsToFrameTransform - 9186.IBPluginDependency - 9187.IBPluginDependency - 9188.IBEditorWindowLastContentRect - 9188.IBPluginDependency - 9195.IBPluginDependency - 92.IBPluginDependency - 9206.IBPluginDependency - 9208.IBPluginDependency - 9209.IBPluginDependency - 9210.IBPluginDependency - 9211.IBPluginDependency - 9236.IBPluginDependency - 9236.IBViewBoundsToFrameTransform - 9237.IBAttributePlaceholdersKey - 9237.IBPluginDependency - 9237.IBViewBoundsToFrameTransform - 9238.IBPluginDependency - 924.IBPluginDependency - 925.IBPluginDependency - 9257.IBAttributePlaceholdersKey - 9257.IBPluginDependency - 9257.IBViewBoundsToFrameTransform - 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 - 9278.IBViewBoundsToFrameTransform - 9279.IBPluginDependency - 9279.IBViewBoundsToFrameTransform - 928.IBPluginDependency - 9280.IBAttributePlaceholdersKey - 9280.IBPluginDependency - 9280.IBViewBoundsToFrameTransform - 9281.IBPluginDependency - 9282.IBPluginDependency - 9282.IBViewBoundsToFrameTransform - 9283.IBPluginDependency - 9284.IBPluginDependency - 9285.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.IBEditorWindowLastContentRect - 9389.IBPluginDependency - 9389.IBWindowTemplateEditedContentRect - 9389.NSWindowTemplate.visibleAtLaunch - 939.IBPluginDependency - 9390.IBPluginDependency - 9392.IBPluginDependency - 9392.IBViewBoundsToFrameTransform - 9393.IBPluginDependency - 9393.IBViewBoundsToFrameTransform - 9394.IBPluginDependency - 9394.IBViewBoundsToFrameTransform - 9395.IBPluginDependency - 9395.IBViewBoundsToFrameTransform - 9396.IBPluginDependency - 9396.IBViewBoundsToFrameTransform - 9397.IBPluginDependency - 9397.IBViewBoundsToFrameTransform - 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 - 9424.IBViewBoundsToFrameTransform - 9425.IBPluginDependency - 943.IBPluginDependency - 944.IBPluginDependency - 945.IBPluginDependency - 946.IBPluginDependency - 947.IBPluginDependency - 948.IBPluginDependency - 949.IBPluginDependency - 950.IBPluginDependency - 951.IBPluginDependency - 952.IBPluginDependency - 9525.IBPluginDependency - 9525.IBViewBoundsToFrameTransform - 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 - 9633.IBViewBoundsToFrameTransform - 9634.IBPluginDependency - 9634.IBViewBoundsToFrameTransform - 9635.IBPluginDependency - 9636.IBPluginDependency - 9637.IBPluginDependency - 9638.IBPluginDependency - 9639.IBPluginDependency - 964.IBPluginDependency - 9640.IBPluginDependency - 9641.IBPluginDependency - 9642.IBPluginDependency - 9643.IBEditorWindowLastContentRect - 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 - 9677.IBViewBoundsToFrameTransform - 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 - 9714.IBViewBoundsToFrameTransform - 9715.IBPluginDependency - 9715.IBViewBoundsToFrameTransform - 9716.IBPluginDependency - 9717.IBPluginDependency - 9732.IBPluginDependency - 9733.IBPluginDependency - 9734.IBPluginDependency - 9735.IBPluginDependency - 9752.IBPluginDependency - 9752.IBViewBoundsToFrameTransform - 9753.IBPluginDependency - 9754.IBPluginDependency - 9755.IBPluginDependency - 9756.IBPluginDependency - 9757.IBPluginDependency - 9758.IBPluginDependency - 9759.IBPluginDependency - 977.IBPluginDependency - 9776.IBPluginDependency - 9777.IBPluginDependency - 9777.IBViewBoundsToFrameTransform - 9778.IBPluginDependency - 9779.IBPluginDependency - 9779.IBViewBoundsToFrameTransform - 978.IBPluginDependency - 9780.IBPluginDependency - 979.IBPluginDependency - 980.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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{807, 773}, {143, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{629, 434}, {520, 422}} - com.apple.InterfaceBuilder.CocoaPlugin - - YES - - - YES - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBgAAAwmgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 DS display views. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1014, 761}, {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 DS display views. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{989, 796}, {126, 113}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABDioAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDiIAAwhAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{1061, 976}, {196, 93}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - The default rotation for new DS 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 - {{461, 155}, {489, 437}} - com.apple.InterfaceBuilder.CocoaPlugin - - InitialTabViewItem - - InitialTabViewItem - - - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBUAAAw9IAAA - - 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 DS display views, producing a variety of visual effects. CPU usage is dependent on which scaler is used. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDJwAAw5MAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{640, 111}, {151, 363}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCbAAAw6IAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABCbAAAw6+AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - Input - - com.apple.InterfaceBuilder.CocoaPlugin - General - - com.apple.InterfaceBuilder.CocoaPlugin - Display - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1227, 664}, {213, 198}} - com.apple.InterfaceBuilder.CocoaPlugin - {{1227, 664}, {213, 198}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - Sound - - {{419, 539}, {400, 373}} - 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 - {{1022, 901}, {132, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - New display views will show both DS screens by default. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - New display views will show only the DS touch screen 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 - {{578, 247}, {554, 373}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - Emulation - - com.apple.InterfaceBuilder.CocoaPlugin - 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 - {{1164, 492}, {160, 293}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{990, 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 - {{571, 529}, {204, 63}} - 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 - 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 - {{806, 1135}, {506, 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 - {{995, 772}, {307, 363}} - 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+AAABDDQAAwnwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABDNgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{439, 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{1241, 208}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{657, 415}, {640, 480}} - com.apple.InterfaceBuilder.CocoaPlugin - {{657, 415}, {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+AAABBkAAAw7kAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{33, 628}, {288, 511}} - com.apple.InterfaceBuilder.CocoaPlugin - {{33, 628}, {288, 511}} - - 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 - - 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 DS. No CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - When set, SoftRasterizer will render fog effects. This may affect the atmospheric look of 3D scenes. Very low CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - 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). May slightly reduce CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAweAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - When set, SoftRasterizer will adjust the order of its polygon rendering. This may improve the look of some games, such as the appearance of shadows in "The Legend of Zelda: Spirit Tracks." No CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDOQAAwgAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwywAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABCsAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABDhzSAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{503, 395}, {301, 467}} - com.apple.InterfaceBuilder.CocoaPlugin - {{503, 395}, {301, 467}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCkgAAwgwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUKAAABC5gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwfAAAA - - - ToolTip - - ToolTip - - When set, SoftRasterizer will adjust the order of its polygon rendering. This may improve the look of some games, such as the appearance of shadows in "The Legend of Zelda: Spirit Tracks." No CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDVwAAwgQAAA - - - ToolTip - - ToolTip - - When set, SoftRasterizer will produce smoother color transitions than a standard DS. No CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBgAAAwsQAAA - - - ToolTip - - ToolTip - - When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBgAAAwpwAAA - - - ToolTip - - ToolTip - - When set, SoftRasterizer will render fog effects. This may affect the atmospheric look of 3D scenes. Very low CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBgAAAwmgAAA - - - 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). May slightly reduce CPU usage. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBgAAAweAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBkAAAwowAAA - - - 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 new DS display views. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDTwAAw7MAAA - - 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+AAABCFAAAw7GAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABD8AAAA - - - ToolTip - - ToolTip - - Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwu4AAA - - 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+AAABDLQAAwnAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{797, 414}, {166, 143}} - 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+AAABBcAAAwmQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUKAAABDjYAAA - - - ToolTip - - ToolTip - - Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBgAAAwpoAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1081, 1073}, {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 - {{1055, 1057}, {220, 43}} - 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 - {{343, 285}, {286, 522}} - com.apple.InterfaceBuilder.CocoaPlugin - {{343, 285}, {286, 522}} - - 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 - {{343, 299}, {260, 328}} - 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 - {{126, 670}, {305, 315}} - com.apple.InterfaceBuilder.CocoaPlugin - {{126, 670}, {305, 315}} - - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1044, 759}, {209, 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 - - P4AAAL+AAABCmAAAw9QAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{63, 775}, {320, 290}} - 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Searches the DS memory for all addresses that currently carry the search value. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Searches the DS 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 - {{1061, 723}, {261, 113}} - com.apple.InterfaceBuilder.CocoaPlugin - - YES - - - YES - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{831, 704}, {198, 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 - - AUGIAABC6gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - {{0, 729}, {500, 416}} - com.apple.InterfaceBuilder.CocoaPlugin - {{0, 729}, {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 - - AUGIAABBgAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - {{756, 530}, {64, 6}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{756, 510}, {64, 6}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - New display views will show only the main DS screen by default. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{343, 269}, {550, 450}} - com.apple.InterfaceBuilder.CocoaPlugin - {{343, 269}, {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 - {{622, 653}, {203, 183}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{865, 762}, {253, 373}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{934, 753}, {224, 83}} - 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 - - ToolTip - - ToolTip - - Enable to use vertical sync on the video output. This setting eliminates screen tearing, but may also reduce the video frame rate. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAxC9AAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Enable to use vertical sync on the video output by default. This setting eliminates screen tearing, but may also reduce the video frame rate. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDhYAAw8QAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1081, 1033}, {123, 43}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1081, 1013}, {178, 43}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - If the display orientation is vertical, the main screen will be arranged above the touch screen by default. If the display layout is horizontal, the main screen will be arranged left of the touch screen by default. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - If the display orientation is vertical, the touch screen will be arranged above the main screen by default. If the display layout is horizontal, the touch screen will be arranged left of the main screen by default. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Arranges the DS screens where one screen is to the left of the other screen by default. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Arranges the DS screens where one screen is above the other screen by default. - - - 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 - - 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 - {{711, 700}, {400, 100}} - com.apple.InterfaceBuilder.CocoaPlugin - {{711, 700}, {400, 100}} - - com.apple.InterfaceBuilder.CocoaPlugin - {{603, 800}, {616, 0}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{962, 321}, {580, 592}} - - - - {580, 592} - {580, 592} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{331, 164}, {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 - - AUGIAABDNwAAA - - - ToolTip - - ToolTip - - Smooths the edges of 3D objects using multisample antialiasing (MSAA). No CPU usage. However, it requires additional VRAM from your GPU. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUPAgABCKAAAA - - - ToolTip - - ToolTip - - Smooths the edges of 3D objects using multisample antialiasing (MSAA) by default. No CPU usage. However, it requires additional VRAM from your GPU. - - - 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 - - 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 - {{131, 345}, {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 - {{709, 350}, {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 - {{784, 552}, {350, 263}} - com.apple.InterfaceBuilder.CocoaPlugin - {{784, 552}, {350, 263}} - - com.apple.InterfaceBuilder.CocoaPlugin - {{84, 906}, {350, 125}} - com.apple.InterfaceBuilder.CocoaPlugin - {{84, 906}, {350, 125}} - - com.apple.InterfaceBuilder.CocoaPlugin - {{310, 589}, {620, 267}} - com.apple.InterfaceBuilder.CocoaPlugin - {{310, 589}, {620, 267}} - - com.apple.InterfaceBuilder.CocoaPlugin - {{789, 354}, {516, 283}} - 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 - - Predefined noise samples that simulate sounds like speaking into the microphone. (Some games, such as "The Legend of Zelda: Spirit Tracks," work especially well with this.) - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Randomly generated white noise that simulates sounds like blowing into the microphone. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Generated pure sine wave tone. Can be adjusted for frequency. - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Predefined samples loaded 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 - {{105, 883}, {350, 125}} - com.apple.InterfaceBuilder.CocoaPlugin - {{105, 883}, {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 - - AUGIAABCYAAAA - - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABD/wAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDcAAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBiAAAw0IAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDzwAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDEAAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBiAAAw3UAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw4KAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{21, 940}, {467, 160}} - 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 - com.apple.InterfaceBuilder.CocoaPlugin - {{996, 161}, {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 - {{827, 727}, {133, 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 - {{560, 837}, {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 - {{147, 847}, {452, 115}} - 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 - {{1081, 903}, {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 DS 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 DS display views. (A value of 100% will create a gap between the screens that has the same relative distance as a hardware DS.) - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{585, 535}, {441, 133}} - com.apple.InterfaceBuilder.CocoaPlugin - {{585, 535}, {441, 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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1081, 933}, {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 DS. - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{246, 388}, {640, 303}} - com.apple.InterfaceBuilder.CocoaPlugin - {{246, 388}, {640, 303}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBkAAAwzYAAA - - 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 - - P4AAAL+AAADCtgAAwmgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Choose a directory where the R4 device stores its data. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABD+AAAwhgAAA - - 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 - - P4AAAL+AAABBYAAAwngAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Resets the emulation. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCRAAAwogAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwvQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUHwAABC6AAAA - - {{1081, 1013}, {70, 103}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBYAAAwlgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{343, 530}, {194, 241}} - com.apple.InterfaceBuilder.CocoaPlugin - {{343, 530}, {194, 241}} - - - YES - - - YES - - - com.apple.InterfaceBuilder.CocoaPlugin - {{1236, 149}, {204, 713}} - com.apple.InterfaceBuilder.CocoaPlugin - {{1236, 149}, {204, 713}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGQAABBgAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCSAAAwjAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBkAAAwjAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{728, 569}, {223, 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 - - AUOPgABDo4AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGgAABDzQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABClgAAw+UAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB6AAAw+CAAA - - 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 - {{909, 672}, {322, 463}} - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 478}, {173, 339}} - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 478}, {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 - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUNnAABBIAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUOKAABBIAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1385, 603}, {132, 363}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - P4AAAL+AAABBqAAAwygAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwgQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - P4AAAL+AAABBgAAAwpwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{509, 91}, {640, 448}} - com.apple.InterfaceBuilder.CocoaPlugin - {{509, 91}, {640, 448}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAw9UAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUNXAABCzAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AUBAAABAgAAAA - - - ToolTip - - ToolTip - - Applies the selected SLOT-2 device's settings. - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABEBIAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBcAAAwlgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABBgAAAA - - {{895, 623}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwgwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{876, 169}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwvAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{882, 323}, {366, 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 - - P4AAAL+AAABBiAAAww8AAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{552, 661}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{882, 704}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{895, 262}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwkAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw5UAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAw4iAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDjwAAw3cAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUONAABDPwAAA - - {{1090, 687}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{911, 632}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwycAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{1193, 722}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAwxYAAA - - {{1184, 327}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{910, 193}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwkAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUMRAABCwAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUJwAABClgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwsgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - YES - - - YES - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDhYAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAw3YAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBiAAAw4MAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{917, 616}, {400, 320}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwy4AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AcIwAABDLAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCsgAAw4YAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDjYAAwz8AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUFAAABC1gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCsgAAw5UAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwsYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDOwAAwsYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGgAABCzAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{672, 478}, {350, 240}} - com.apple.InterfaceBuilder.CocoaPlugin - {{672, 478}, {350, 240}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwzsAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDFSEAwfgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{326, 250}, {580, 588}} - com.apple.InterfaceBuilder.CocoaPlugin - {{326, 250}, {580, 588}} - - com.apple.InterfaceBuilder.CocoaPlugin - - AUMuAABBMAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABCvgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDcAAAwqIAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDEAAAwqIAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwqwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUJMAABCwAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC+gAAwywAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC+AAAwigAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwqwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw18AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwsYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwsYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCngAAw1AAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCpAAAwzcAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDrgAAwx0AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHgAAww8AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqgAAw00AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw0gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDg4AAwqYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABDIQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw28AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw0gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAADCSAAAwq4AAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCZAAAwiwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUKQAABCwAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{307, 552}, {254, 262}} - com.apple.InterfaceBuilder.CocoaPlugin - {{307, 552}, {254, 262}} - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Execute - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwfAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Frame Advance - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB+AAAwqgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Reset - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDYgAAw6YAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Frame Jump - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC+AAAwfAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Pause - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwqgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDQgAAw5KAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBkAAAwowAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDQgAAw4iAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCFAAAwkQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB4AAAwmwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDXwAAwmwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABChgAAwmwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC1AAAwmwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDEQAAwmwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDOQAAwmwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwrAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDFgAAwrAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDKQAAwqYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUFgAABDRAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AUFgAABCsAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCdAAAww8AAA - - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBiAAAwgAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCbAAAwYAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{820, 748}, {300, 108}} - com.apple.InterfaceBuilder.CocoaPlugin - {{820, 748}, {300, 108}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw3gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBkAAAwggAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDDwAAwr4AAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCPAAAwr4AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - - P4AAAL+AAABBqAAAwpAAAA - - 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 - - P4AAAL+AAABBoAAAwuLSAA - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Sets the default output filter for new DS 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+AAABDJwAAw6CAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCbAAAw70AAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{644, 315}, {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 - - AUDAAABChAAAA - - - 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+AAABBgAAAw1EAAA - - 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+AAABDKAAAw68AAA - - 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 - {{1385, 983}, {134, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1385, 863}, {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+AAABBiAAAxDYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABEIwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AUGIAABD9QAAA - - 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+AAABBgAAAwjQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBkAAAw1UAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBcAAAwWAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDFgAAwxcAAA - - com.apple.InterfaceBuilder.CocoaPlugin - {{636, 598}, {138, 122}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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 - {{848, 607}, {290, 119}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDPgAAwpgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDPgAAwsoAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDEwAAwpIAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDEwAAwsQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwpYAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwsgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - 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+AAABCrgAAwhwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBcAAAwqwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUOPgABC9gAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AUOPgABDUQAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{951, 299}, {160, 293}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUMhAABDBAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{604, 173}, {700, 405}} - com.apple.InterfaceBuilder.CocoaPlugin - {{604, 173}, {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 - - P4AAAL+AAABBiAAAw6qAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw7+AAA - - com.apple.InterfaceBuilder.CocoaPlugin - 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/gAAAw5iAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - 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+AAABBMAAAw8mAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBuAAAw7OAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 9795 - - - - 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 - boxARMBinaries - boxFileSystem - boxGeneralInfo - boxMisc - boxTitles - cdsCoreController - cdsSoundController - cheatListWindow - cheatWindowController - emuControlController - inputDeviceListController - inputManager - inputPrefsView - mLoadStateSlot - mSaveStateSlot - migrationDelegate - prefGeneralView - prefWindow - prefWindowController - romInfoPanelController - slot2Window - troubleshootingWindow - - - YES - NSObjectController - NSBox - NSBox - NSBox - NSBox - NSBox - NSObjectController - NSObjectController - NSWindow - NSObjectController - NSObjectController - NSArrayController - InputManager - InputPrefsView - NSMenu - NSMenu - FileMigrationDelegate - NSView - NSWindow - NSObjectController - NSObjectController - NSWindow - NSWindow - - - - YES - - YES - aboutWindowController - boxARMBinaries - boxFileSystem - boxGeneralInfo - boxMisc - boxTitles - cdsCoreController - cdsSoundController - cheatListWindow - cheatWindowController - emuControlController - inputDeviceListController - inputManager - inputPrefsView - mLoadStateSlot - mSaveStateSlot - migrationDelegate - prefGeneralView - prefWindow - prefWindowController - romInfoPanelController - slot2Window - troubleshootingWindow - - - YES - - aboutWindowController - NSObjectController - - - boxARMBinaries - NSBox - - - boxFileSystem - NSBox - - - boxGeneralInfo - NSBox - - - boxMisc - NSBox - - - boxTitles - NSBox - - - cdsCoreController - NSObjectController - - - cdsSoundController - NSObjectController - - - cheatListWindow - NSWindow - - - cheatWindowController - NSObjectController - - - emuControlController - NSObjectController - - - inputDeviceListController - NSArrayController - - - inputManager - InputManager - - - inputPrefsView - InputPrefsView - - - mLoadStateSlot - NSMenu - - - mSaveStateSlot - NSMenu - - - migrationDelegate - FileMigrationDelegate - - - prefGeneralView - NSView - - - prefWindow - NSWindow - - - prefWindowController - NSObjectController - - - romInfoPanelController - NSObjectController - - - slot2Window - NSWindow - - - troubleshootingWindow - NSWindow - - - - - 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 - - - - DisplayPreviewView - NSView - - IBProjectSource - userinterface/preferencesWindowDelegate.h - - - - DisplayView - NSView - - IBProjectSource - userinterface/DisplayWindowController.h - - - - DisplayWindowController - NSWindowController - - YES - - YES - changeCoreSpeed: - changeDisplayGap: - changeDisplayMode: - changeDisplayOrder: - changeDisplayOrientation: - changeRotation: - changeRotationRelative: - changeScale: - changeVideoOutputFilter: - changeVideoPixelScaler: - changeVolume: - copy: - openRom: - reset: - saveScreenshotAs: - toggleExecutePause: - toggleFullScreenDisplay: - toggleKeepMinDisplaySizeAtNormal: - toggleStatusBar: - 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 - - - - YES - - YES - changeCoreSpeed: - changeDisplayGap: - changeDisplayMode: - changeDisplayOrder: - changeDisplayOrientation: - changeRotation: - changeRotationRelative: - changeScale: - changeVideoOutputFilter: - changeVideoPixelScaler: - changeVolume: - copy: - openRom: - reset: - saveScreenshotAs: - toggleExecutePause: - toggleFullScreenDisplay: - toggleKeepMinDisplaySizeAtNormal: - toggleStatusBar: - toggleVideoSourceDeposterize: - writeDefaultsDisplayGap: - writeDefaultsDisplayRotation: - writeDefaultsDisplayVideoSettings: - writeDefaultsHUDSettings: - - - YES - - changeCoreSpeed: - id - - - changeDisplayGap: - id - - - changeDisplayMode: - id - - - changeDisplayOrder: - id - - - changeDisplayOrientation: - id - - - changeRotation: - id - - - changeRotationRelative: - id - - - changeScale: - id - - - changeVideoOutputFilter: - id - - - changeVideoPixelScaler: - id - - - changeVolume: - id - - - copy: - id - - - openRom: - id - - - reset: - id - - - saveScreenshotAs: - id - - - toggleExecutePause: - id - - - toggleFullScreenDisplay: - id - - - toggleKeepMinDisplaySizeAtNormal: - id - - - toggleStatusBar: - id - - - toggleVideoSourceDeposterize: - id - - - writeDefaultsDisplayGap: - id - - - writeDefaultsDisplayRotation: - id - - - writeDefaultsDisplayVideoSettings: - id - - - writeDefaultsHUDSettings: - id - - - - - YES - - YES - saveScreenshotPanelAccessoryView - view - - - YES - NSView - DisplayView - - - - YES - - YES - saveScreenshotPanelAccessoryView - view - - - YES - - saveScreenshotPanelAccessoryView - NSView - - - view - DisplayView - - - - - - - EmuControllerDelegate - NSObject - - YES - - YES - autoholdSet: - changeAudioEngine: - changeCoreEmuFlags: - changeCoreSpeed: - changeFirmwareSettings: - changeRomSaveType: - changeSpuAdvancedLogic: - changeSpuInterpolationMode: - changeSpuSyncMethod: - changeSpuSyncMode: - changeVolume: - chooseSlot1R4Directory: - closeRom: - closeSheet: - coreExecute: - corePause: - exportRomSave: - frameAdvance: - frameJump: - importRomSave: - loadEmuSaveStateSlot: - loadRecentRom: - newDisplayWindow: - openEmuSaveState: - openReplay: - openRom: - recordReplay: - reset: - revealGameDataFolderInFinder: - revealRomInFinder: - revertEmuSaveState: - saveEmuSaveState: - saveEmuSaveStateAs: - saveEmuSaveStateSlot: - slot1Eject: - stopReplay: - toggleAllDisplays: - toggleAutoFrameSkip: - toggleCheats: - toggleExecutePause: - toggleGDBStubActivate: - toggleGPUState: - toggleSpeedLimiter: - writeDefaults3DRenderingSettings: - writeDefaultsEmulationSettings: - writeDefaultsSlot1Settings: - writeDefaultsSoundSettings: - - - 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 - - - - YES - - YES - autoholdSet: - changeAudioEngine: - changeCoreEmuFlags: - changeCoreSpeed: - changeFirmwareSettings: - changeRomSaveType: - changeSpuAdvancedLogic: - changeSpuInterpolationMode: - changeSpuSyncMethod: - changeSpuSyncMode: - changeVolume: - chooseSlot1R4Directory: - closeRom: - closeSheet: - coreExecute: - corePause: - exportRomSave: - frameAdvance: - frameJump: - importRomSave: - loadEmuSaveStateSlot: - loadRecentRom: - newDisplayWindow: - openEmuSaveState: - openReplay: - openRom: - recordReplay: - reset: - revealGameDataFolderInFinder: - revealRomInFinder: - revertEmuSaveState: - saveEmuSaveState: - saveEmuSaveStateAs: - saveEmuSaveStateSlot: - slot1Eject: - stopReplay: - toggleAllDisplays: - toggleAutoFrameSkip: - toggleCheats: - toggleExecutePause: - toggleGDBStubActivate: - toggleGPUState: - toggleSpeedLimiter: - writeDefaults3DRenderingSettings: - writeDefaultsEmulationSettings: - writeDefaultsSlot1Settings: - writeDefaultsSoundSettings: - - - YES - - autoholdSet: - id - - - changeAudioEngine: - id - - - changeCoreEmuFlags: - id - - - changeCoreSpeed: - id - - - changeFirmwareSettings: - 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 - - - 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 - - - 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 - - - - - YES - - YES - cdsCoreController - cdsSoundController - cheatDatabaseController - cheatListController - cheatWindowController - cheatWindowDelegate - executionControlWindow - exportRomSavePanelAccessoryView - firmwarePanelController - inputManager - romInfoPanelController - saveFileMigrationSheet - saveStatePrecloseSheet - slot1ManagerWindow - slot2WindowController - - - YES - NSObjectController - NSObjectController - NSArrayController - NSArrayController - NSObjectController - CheatWindowDelegate - NSWindow - NSView - NSObjectController - InputManager - NSObjectController - NSWindow - NSWindow - NSWindow - NSObjectController - - - - YES - - YES - cdsCoreController - cdsSoundController - cheatDatabaseController - cheatListController - cheatWindowController - cheatWindowDelegate - executionControlWindow - exportRomSavePanelAccessoryView - firmwarePanelController - inputManager - romInfoPanelController - saveFileMigrationSheet - saveStatePrecloseSheet - slot1ManagerWindow - slot2WindowController - - - YES - - cdsCoreController - NSObjectController - - - cdsSoundController - NSObjectController - - - cheatDatabaseController - NSArrayController - - - cheatListController - NSArrayController - - - cheatWindowController - NSObjectController - - - cheatWindowDelegate - CheatWindowDelegate - - - executionControlWindow - NSWindow - - - exportRomSavePanelAccessoryView - NSView - - - firmwarePanelController - NSObjectController - - - inputManager - InputManager - - - romInfoPanelController - NSObjectController - - - saveFileMigrationSheet - NSWindow - - - saveStatePrecloseSheet - NSWindow - - - slot1ManagerWindow - NSWindow - - - slot2WindowController - NSObjectController - - - - - IBProjectSource - userinterface/EmuControllerDelegate.h - - - - FileMigrationDelegate - NSObject - - YES - - YES - handleChoice: - selectAll: - selectNone: - updateAndShowWindow: - - - YES - id - id - id - id - - - - YES - - YES - handleChoice: - selectAll: - selectNone: - updateAndShowWindow: - - - YES - - handleChoice: - id - - - selectAll: - id - - - selectNone: - id - - - updateAndShowWindow: - id - - - - - YES - - YES - fileListController - fileTreeOutlineView - window - - - YES - NSArrayController - NSOutlineView - NSWindow - - - - YES - - YES - fileListController - fileTreeOutlineView - window - - - YES - - fileListController - NSArrayController - - - 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: - showSettingsSheet: - - - YES - 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: - showSettingsSheet: - - - 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 - - - showSettingsSheet: - id - - - - - YES - - YES - inputManager - inputPrefOutlineView - inputProfileController - inputProfileMenu - inputProfileNextButton - inputProfilePreviousButton - inputProfileRenameSheet - inputProfileSheet - inputSettingsController - inputSettingsGPUState - inputSettingsLoadStateSlot - inputSettingsMicrophone - inputSettingsNDSInput - inputSettingsPaddleController - inputSettingsSaveStateSlot - inputSettingsSetSpeedLimit - inputSettingsTouch - prefWindow - - - YES - InputManager - NSOutlineView - InputProfileController - NSPopUpButton - NSButton - NSButton - NSWindow - NSWindow - NSObjectController - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - NSWindow - - - - YES - - YES - inputManager - inputPrefOutlineView - inputProfileController - inputProfileMenu - inputProfileNextButton - inputProfilePreviousButton - inputProfileRenameSheet - inputProfileSheet - inputSettingsController - inputSettingsGPUState - inputSettingsLoadStateSlot - inputSettingsMicrophone - inputSettingsNDSInput - inputSettingsPaddleController - inputSettingsSaveStateSlot - inputSettingsSetSpeedLimit - inputSettingsTouch - prefWindow - - - 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 - - - - - 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 - - - - PreferencesWindowDelegate - NSObject - - YES - - YES - changePrefView: - chooseARM7BiosImage: - chooseARM9BiosImage: - chooseAdvansceneDatabase: - chooseCheatDatabase: - chooseFirmwareImage: - chooseRomForAutoload: - closeFirmwareConfigSheet: - configureInternalFirmware: - selectDisplayRotation: - selectOutputFilter: - selectPixelScaler: - selectSPUSyncMethod: - selectSPUSyncMode: - updateFiltersPreferGPU: - updateSourceDeposterize: - updateVolumeIcon: - - - YES - 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: - selectDisplayRotation: - selectOutputFilter: - selectPixelScaler: - selectSPUSyncMethod: - selectSPUSyncMode: - updateFiltersPreferGPU: - updateSourceDeposterize: - updateVolumeIcon: - - - YES - - changePrefView: - id - - - chooseARM7BiosImage: - id - - - chooseARM9BiosImage: - id - - - chooseAdvansceneDatabase: - id - - - chooseCheatDatabase: - id - - - chooseFirmwareImage: - id - - - chooseRomForAutoload: - id - - - closeFirmwareConfigSheet: - id - - - configureInternalFirmware: - id - - - selectDisplayRotation: - id - - - selectOutputFilter: - id - - - selectPixelScaler: - id - - - selectSPUSyncMethod: - id - - - selectSPUSyncMode: - id - - - updateFiltersPreferGPU: - id - - - updateSourceDeposterize: - id - - - updateVolumeIcon: - id - - - - - YES - - YES - cdsCoreController - cheatDatabaseController - cheatWindowController - displayRotationField - displayRotationMenu - displayRotationMenuCustomItem - emuController - firmwareConfigSheet - prefWindowController - previewView - spuSyncMethodMenu - toolbar - viewDisplay - viewEmulation - viewGeneral - viewInput - viewSound - window - - - YES - NSObjectController - NSArrayController - NSObjectController - NSTextField - NSPopUpButton - NSMenuItem - NSObjectController - NSWindow - NSObjectController - DisplayPreviewView - NSPopUpButton - NSToolbar - NSView - NSView - NSView - InputPrefsView - NSView - NSWindow - - - - YES - - YES - cdsCoreController - cheatDatabaseController - cheatWindowController - displayRotationField - displayRotationMenu - displayRotationMenuCustomItem - emuController - firmwareConfigSheet - prefWindowController - previewView - spuSyncMethodMenu - toolbar - viewDisplay - viewEmulation - viewGeneral - viewInput - viewSound - window - - - YES - - cdsCoreController - NSObjectController - - - cheatDatabaseController - NSArrayController - - - cheatWindowController - NSObjectController - - - displayRotationField - NSTextField - - - displayRotationMenu - NSPopUpButton - - - displayRotationMenuCustomItem - NSMenuItem - - - emuController - NSObjectController - - - firmwareConfigSheet - NSWindow - - - prefWindowController - NSObjectController - - - previewView - DisplayPreviewView - - - spuSyncMethodMenu - NSPopUpButton - - - toolbar - NSToolbar - - - viewDisplay - NSView - - - viewEmulation - NSView - - - viewGeneral - NSView - - - viewInput - InputPrefsView - - - viewSound - NSView - - - window - NSWindow - - - - - - - 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 - - - - - 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 - - - - 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 - - - - 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 - - - - 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 - - - - 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_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} - {420, 420} - {420, 420} - {420, 420} - {420, 420} - {20, 20} - {421, 339} - {360, 136} - {698, 479} - {111.60000000000001, 85.600000000000009} - {515, 457} - {14, 14} - {11, 11} - {128, 128} - {12, 12} - {10, 2} - {32, 32} - {16, 15} - {11, 11} - {15, 15} - - - + + + + + + + + 400 + 75 + + 1 + + + + + + + {{1, 1}, {253, 62}} + + + + {{16, 413}, {255, 78}} + + {0, 0} + + 67108864 + 0 + Audio Output Engine + + + + + + 1 + 0 + 2 + NO + + + {288, 511} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + SoundSettingsPanel + YES + + + 15 + 2 + {{64, 101}, {330, 811}} + 1685585920 + ROM Info + RomInfoPanel + + + {330, 811} + {330, 88} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 268 + + YES + + + 266 + + YES + + + 10 + {{0, 40}, {321, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{8, 27}, {13, 13}} + + _NS:4078 + YES + + -2080374784 + 0 + + + _NS:4078 + + -1198768128 + 133 + + + 200 + 25 + + NO + + + + 268 + {{23, 26}, {206, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + Miscellaneous + + _NS:4068 + + + + + NO + 1 + + + + 266 + {{192, 8}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 268 + {{4, 8}, {186, 14}} + + + YES + + 68157504 + 71304192 + Icon/Title Offset: + + + + + + NO + 1 + + + {{0, -2}, {321, 44}} + + _NS:1109 + RomInfoPanelSectionView + + + + 266 + + YES + + + 10 + {{0, 92}, {322, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{8, 78}, {13, 13}} + + _NS:4078 + YES + + -2080374784 + 0 + + + _NS:4078 + + -1198768128 + 133 + + + 200 + 25 + + NO + + + + 268 + {{23, 77}, {206, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + File System + + _NS:4068 + + + + + NO + 1 + + + + 266 + {{192, 9}, {112, 14}} + + YES + + 70254657 + 4199424 + + + ? bytes + + + + + NO + 1 + + + + 268 + {{4, 9}, {186, 14}} + + + YES + + 68157504 + 71304192 + FAT Size: + + + + + + NO + 1 + + + + 266 + {{192, 25}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 268 + {{4, 25}, {186, 14}} + + + YES + + 68157504 + 71304192 + FAT ROM Offset: + + + + + + NO + 1 + + + + 266 + {{192, 41}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + ? bytes + + + + + NO + 1 + + + + 268 + {{4, 41}, {186, 14}} + + + YES + + 68157504 + 71304192 + FNT Size: + + + + + + NO + 1 + + + + 266 + {{192, 57}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 268 + {{4, 57}, {186, 14}} + + + YES + + 68157504 + 71304192 + FNT ROM Offset: + + + + + + NO + 1 + + + {{0, 42}, {321, 95}} + + _NS:1109 + RomInfoPanelSectionView + + + + 266 + + YES + + + 10 + {{0, 155}, {322, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{8, 141}, {13, 13}} + + _NS:4078 + YES + + -2080374784 + 0 + + + _NS:4078 + + -1198768128 + 133 + + + 200 + 25 + + NO + + + + 266 + {{23, 140}, {206, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + ARM9 & ARM7 Binaries + + _NS:4068 + + + + + NO + 1 + + + + 266 + {{192, 10}, {112, 14}} + + YES + + 70254657 + 4199424 + + + ? bytes + + + + + NO + 1 + + + + 266 + {{192, 26}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 266 + {{192, 42}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 266 + {{192, 58}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 266 + {{192, 74}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + ? bytes + + + + + NO + 1 + + + + 266 + {{192, 90}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 266 + {{192, 106}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 266 + {{192, 122}, {112, 14}} + + + YES + + 70254657 + 4199424 + + + 0xXXXXXXXX + + + + + NO + 1 + + + + 268 + {{4, 10}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM7 Binary Size: + + + + + + NO + 1 + + + + 268 + {{4, 26}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM7 Binary Start Address: + + + + + + NO + 1 + + + + 268 + {{4, 42}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM7 Binary Entry Address: + + + + + + NO + 1 + + + + 268 + {{4, 58}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM7 Binary ROM Offset: + + + + + + NO + 1 + + + + 268 + {{4, 74}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM9 Binary Size: + + + + + + NO + 1 + + + + 268 + {{4, 90}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM9 Binary Start Address: + + + + + + NO + 1 + + + + 268 + {{4, 106}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM9 Binary Entry Address: + + + + + + NO + 1 + + + + 268 + {{4, 122}, {186, 14}} + + + YES + + 68157504 + 71304192 + ARM9 Binary ROM Offset: + + + + + + NO + 1 + + + {{0, 137}, {321, 158}} + + _NS:1109 + RomInfoPanelSectionView + + + + 266 + + YES + + + 10 + {{0, 91}, {321, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 268 + {{8, 77}, {13, 13}} + + _NS:4078 + YES + + -2080374784 + 0 + + + _NS:4078 + + -1198768128 + 133 + + + 200 + 25 + + NO + + + + 268 + {{23, 76}, {206, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + General + + _NS:4068 + + + + + NO + 1 + + + + 266 + {{95, 9}, {166, 14}} + + YES + + 70254657 + 4199424 + + + ? bytes + + + + + NO + 1 + + + + 268 + {{-3, 9}, {96, 14}} + + + YES + + 68157504 + 71304192 + Remaining: + + + + + + NO + 1 + + + + 266 + {{95, 25}, {166, 14}} + + YES + + 70254657 + 4199424 + + + ? bytes + + + + + NO + 1 + + + + 268 + {{-3, 25}, {96, 14}} + + + YES + + 68157504 + 71304192 + Used: + + + + + + NO + 1 + + + + 266 + {{95, 57}, {166, 14}} + + YES + + 70254657 + 4330496 + + + unitCode + + + + + NO + 1 + + + + 268 + {{-3, 57}, {96, 14}} + + + YES + + 68157504 + 71435264 + Kind: + + + + + + NO + 1 + + + + 266 + {{95, 41}, {166, 14}} + + YES + + 70254657 + 4330496 + + + ? bytes + + + + + NO + 1 + + + + 268 + {{-3, 41}, {96, 14}} + + + YES + + 68157504 + 71435264 + Capacity: + + + + + + NO + 1 + + + {{0, 627}, {321, 94}} + + _NS:1109 + RomInfoPanelSectionView + + + + 266 + + YES + + + 268 + {{8, 315}, {13, 13}} + + _NS:4078 + YES + + -2080374784 + 0 + + + _NS:4078 + + -1198768128 + 133 + + + 200 + 25 + + NO + + + + 268 + {{23, 314}, {206, 14}} + + _NS:4068 + YES + + 68157504 + 272761856 + Titles + + _NS:4068 + + + + + NO + 1 + + + + 10 + {{-3, 329}, {321, 5}} + + _NS:2429 + {0, 0} + + 67108864 + 0 + Box + + + + + 3 + 2 + 0 + NO + + + + 266 + {{95, 18}, {214, 42}} + + YES + + 69206017 + 272764928 + + + ? + + + + + NO + 1 + + + + 266 + {{95, 68}, {214, 42}} + + + YES + + 69206017 + 272764928 + + + ? + + + + + NO + 1 + + + + 266 + {{95, 118}, {214, 42}} + + + YES + + 69206017 + 272764928 + + + ? + + + + + NO + 1 + + + + 266 + {{95, 168}, {214, 42}} + + + YES + + 69206017 + 272764928 + + + ? + + + + + NO + 1 + + + + 266 + {{95, 218}, {214, 42}} + + + YES + + 69206017 + 272764928 + + + ? + + + + + NO + 1 + + + + 266 + {{95, 268}, {214, 42}} + + + YES + + 69206017 + 272764928 + + + ? + + + + + NO + 1 + + + + 268 + {{-3, 18}, {96, 42}} + + + YES + + 67108864 + 71438336 + Spanish: + + + + + + NO + 1 + + + + 268 + {{-3, 68}, {96, 42}} + + + YES + + 67108864 + 71438336 + Italian: + + + + + + NO + 1 + + + + 268 + {{-3, 118}, {96, 42}} + + + YES + + 67108864 + 71438336 + German: + + + + + + NO + 1 + + + + 268 + {{-3, 168}, {96, 42}} + + + YES + + 67108864 + 71438336 + French: + + + + + + NO + 1 + + + + 268 + {{-3, 218}, {96, 42}} + + + YES + + 67108864 + 71438336 + English: + + + + + + NO + 1 + + + + 268 + {{-3, 268}, {96, 42}} + + + YES + + 67108864 + 71438336 + Japanese: + + + + + + NO + 1 + + + {{0, 295}, {321, 332}} + + _NS:1109 + RomInfoPanelSectionView + + + + 266 + {{165, 727}, {152, 42}} + + + YES + + 69206017 + 4329472 + + + gameDeveloperWithCode + + + + + NO + 1 + + + + 266 + {{165, 771}, {152, 14}} + + + YES + + 70254657 + 4330496 + + + romSerial + + + + + NO + 1 + + + + 266 + {{165, 787}, {152, 14}} + + + YES + + 70254657 + 4330496 + + + romInternalName + + + + + NO + 1 + + + + 268 + {{77, 755}, {86, 14}} + + + YES + + 68157504 + 71435264 + Developer: + + + + + + NO + 1 + + + + 268 + {{78, 771}, {86, 14}} + + + YES + + 68157504 + 71435264 + Serial: + + + + + + NO + 1 + + + + 268 + {{78, 787}, {86, 14}} + + + YES + + 68157504 + 71439360 + Name: + + + + + + NO + 1 + + + + 12 + + 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 + + + {{9, 735}, {64, 64}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + {319, 810} + + RomInfoContentView + + + {{1, 1}, {315, 810}} + + + _NS:353 + + + 4 + + + + 256 + {{316, 1}, {15, 810}} + + _NS:359 + NO + + _doScroller: + 0.99629629629629635 + + + + -2147483392 + {{-100, -100}, {295, 15}} + + _NS:363 + YES + NO + 1 + + _doScroller: + 0.94551282051282048 + + + {{-1, -1}, {332, 812}} + + + _NS:351 + 133266 + + + + AAAAAEEgAAAAAAAAQSAAAA + 0.25 + 4 + 1 + + + {330, 811} + + + + {{0, 0}, {1920, 1178}} + {330, 110} + {330, 833} + ROMInfoPanel + YES + + + 279 + 2 + {{162, 281}, {213, 198}} + -461896704 + Set Rotation + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{88, 119}, {32, 34}} + + YES + + 67371264 + 0 + + + 360 + 0.0 + 0.0 + 0.0 + 4 + 1 + NO + NO + 1 + + NO + + + + 268 + {{85, 161}, {38, 17}} + + YES + + 68157504 + 138413056 + + + + + + + NO + 1 + + + + 268 + {{85, 94}, {39, 17}} + + YES + + 68157504 + 138413056 + 180º + + + + + + NO + 1 + + + + 268 + {{44, 127}, {39, 17}} + + YES + + 68157504 + 138413056 + 270º + + + + + + NO + 1 + + + + 268 + {{125, 127}, {38, 17}} + + YES + + 68157504 + 138413056 + 90º + + + + + + NO + 1 + + + + 268 + {{127, 69}, {57, 17}} + + YES + + 68157504 + 272630784 + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + currencySymbol + formatterBehavior + internationalCurrencySymbol + lenient + locale + maximumFractionDigits + maximumIntegerDigits + minimumFractionDigits + minimumIntegerDigits + negativeFormat + negativeSuffix + numberStyle + positiveFormat + positiveSuffix + + + YES + + + ¤ + + ¤¤ + + + + + + + #0.00º + º + + #0.00º + º + + + #0.00º + #0.00º + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + rotX + + + + + NO + 1 + + + + 268 + {{24, 69}, {101, 17}} + + YES + + 68157504 + 272630784 + Rotation set to: + + + + + + NO + 1 + + + + 268 + {{23, 42}, {162, 19}} + + YES + + -2080374784 + 134217728 + Set to 0º + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{23, 17}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + {213, 198} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + SetRotationPanel + YES + + + 279 + 2 + {{230, 408}, {441, 133}} + -461896704 + Set Separation + NSPanel + + + {1.7976931348623157e+308, 1.7976931348623157e+308} + + + 256 + + YES + + + 268 + {{30, 73}, {385, 26}} + + YES + + -2080112384 + 0 + + + 2 + 0.0 + 1 + 0.0 + 5 + 1 + NO + NO + + NO + + + + 268 + {{388, 99}, {40, 14}} + + YES + + 68157504 + 138544128 + 200% + + + + + + NO + 1 + + + + 268 + {{297, 99}, {40, 14}} + + YES + + 68157504 + 138544128 + 150% + + + + + + NO + 1 + + + + 268 + {{207, 99}, {40, 14}} + + YES + + 68157504 + 138544128 + 100% + + + + + + NO + 1 + + + + 268 + {{116, 99}, {38, 14}} + + YES + + 68157504 + 138544128 + 50% + + + + + + NO + 1 + + + + 268 + {{25, 99}, {38, 14}} + + YES + + 68157504 + 138544128 + 0% + + + + + + NO + 1 + + + + 268 + {{248, 51}, {108, 17}} + + YES + + 68157504 + 71304192 + Gap Percentage: + + + + + + NO + 1 + + + + 268 + {{358, 51}, {66, 17}} + + YES + + 68157504 + -2143288320 + + + + + YES + + YES + allowsFloats + alwaysShowsDecimalSeparator + formatterBehavior + locale + maximumFractionDigits + maximumIntegerDigits + minimumFractionDigits + negativeInfinitySymbol + nilSymbol + numberStyle + positiveInfinitySymbol + usesGroupingSeparator + + + YES + + + + + + + + -∞ + + + +∞ + + + + #0.0% + #0.0% + + + + + + + + NaN + + + + + + 3 + YES + YES + YES + + . + , + NO + NO + YES + + 1.1f% + + + + + NO + 1 + + + + 268 + {{20, 48}, {100, 19}} + + YES + + -2080374784 + 134217728 + Set to 0% + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{128, 48}, {100, 19}} + + 100 + YES + + -2080374784 + 134217728 + Set to 100% + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + + 268 + {{142, 18}, {162, 19}} + + YES + + -2080374784 + 134217728 + Save Settings as Default + + + -2038153216 + 164 + + + 400 + 75 + + NO + + + {441, 133} + + {{0, 0}, {1920, 1178}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + SetSeparationPanel + YES + + + 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, 1178}} + {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 + 1 + + + + 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 + 1 + + + + 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 + 1 + + + + 268 + {{147, 57}, {38, 14}} + + _NS:4068 + YES + + 68157504 + 71435264 + Port: + + _NS:4068 + + + + + NO + 1 + + + + 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}, {1440, 878}} + {1.7976931348623157e+308, 1.7976931348623157e+308} + GDBStubControlPanel + NO + + + + 268 + + YES + + + 268 + {{195, 5}, {226, 26}} + + YES + + -2076180416 + 2048 + + + 109199360 + 1 + + + 400 + 75 + + + DeSmuME ROM Save (.dsv) + + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + YES + + + + No$GBA ROM Save (.sav) + + 2147483647 + + + _popUpItemAction: + 1 + + + + + Raw Save File (.sav) + + 2147483647 + + + _popUpItemAction: + 2 + + + + + + 1 + YES + YES + 2 + + NO + + + + 268 + {{17, 11}, {176, 17}} + + YES + + 68157504 + 71304192 + Select ROM Save Format: + + + + + + NO + 1 + + + {450, 35} + NSView + + + 7 + 2 + {{88, 206}, {580, 592}} + 1685586944 + Troubleshooting Form + NSWindow + + + {580, 592} + {580, 592} + + + 256 + {580, 592} + + {{0, 0}, {1440, 878}} + {580, 614} + {580, 614} + YES + + + + 268 + + YES + + + 1292 + {{364, 339}, {32, 32}} + + 28682 + 100 + + + + 265 + {{396, 343}, {168, 28}} + + YES + + 69206017 + 272764928 + TmFtZToKU2VyaWFsOg + + + + + + NO + 1 + + + + 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 + + + {{364, 341}, {30, 30}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 256 + + YES + + + 2304 + + YES + + + 2322 + + 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 + + + {523, 202} + + + + + + + + + + + YES + + + 38 + + + + 523 + 1 + + + 100675459 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {525, 10000000} + + + + {{1, 1}, {523, 202}} + + + + + + 4 + + + + 256 + {{524, 1}, {15, 202}} + + NO + + _doScroller: + 0.99248120300751874 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{20, 61}, {540, 204}} + + + 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 + 1 + + + + 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 + 1 + + + + 269 + {{17, 309}, {546, 17}} + + YES + + 68157504 + 272630784 + Tell us what you need help with. + + + + + + NO + 1 + + + + 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 + 1 + + + + 269 + {{17, 539}, {546, 17}} + + YES + + 68157504 + 138413056 + DeSmuME Technical Support Request Form + + + + + + NO + 1 + + + + 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 + 1 + + + + 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 + 1 + + + + 268 + {{17, 347}, {84, 17}} + + YES + + 68157504 + 272630784 + ROM Serial: + + + + + + NO + 1 + + + + 268 + {{17, 377}, {84, 17}} + + YES + + 68157504 + 272630784 + ROM Name: + + + + + + NO + 1 + + + + 266 + {{106, 345}, {250, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 266 + {{106, 375}, {250, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 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 + 1 + + + + 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 + + + {{364, 341}, {30, 30}} + + YES + + 134217728 + 33554432 + + 0 + 3 + 0 + NO + + NO + YES + + + + 256 + + YES + + + 2304 + + YES + + + 2322 + + 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 + + + {524, 80} + + + + + + + + + + + YES + + + 38 + + + + 524 + 1 + + + 100675459 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {531, 10000000} + + + + {{1, 1}, {524, 80}} + + + + + + 4 + + + + 256 + {{525, 1}, {15, 80}} + + NO + + _doScroller: + 0.99248120300751874 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{20, 61}, {541, 82}} + + + 133138 + + + + 0.25 + 4 + 1 + + + + 256 + + YES + + + 2304 + + YES + + + 2322 + + 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 + + + {523, 80} + + + + + + + + + + + YES + + + 38 + + + + 523 + 1 + + + 100675459 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 1 + + 6 + {523, 10000000} + + + + {{1, 1}, {523, 80}} + + + + + + 4 + + + + 256 + {{524, 1}, {15, 80}} + + NO + + _doScroller: + 0.99248120300751874 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{20, 167}, {540, 82}} + + + 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 + 1 + + + + 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 + 1 + + + + 256 + {{17, 251}, {206, 14}} + + YES + + 68157504 + 272761856 + Observed Behavior: + + + + + + NO + 1 + + + + 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 + 1 + + + + 269 + {{17, 309}, {546, 17}} + + YES + + 68157504 + 272630784 + Tell us what is happening. + + + + + + NO + 1 + + + + 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 + 1 + + + + 269 + {{17, 539}, {546, 17}} + + YES + + 68157504 + 138413056 + DeSmuME Bug Report Form + + + + + + NO + 1 + + + + 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 + 1 + + + + 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 + 1 + + + + 268 + {{17, 347}, {83, 17}} + + YES + + 68157504 + 272630784 + ROM Serial: + + + + + + NO + 1 + + + + 268 + {{17, 377}, {83, 17}} + + YES + + 68157504 + 272630784 + ROM Name: + + + + + + NO + 1 + + + + 266 + {{105, 345}, {250, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 266 + {{105, 375}, {250, 22}} + + YES + + -1804599231 + 272630784 + + + + YES + + + + NO + 1 + + + + 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 + 1 + + + + 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 + + + 2304 + + YES + + + 2322 + {538, 443} + + + + + + + + + + + YES + + + 38 + + + + 538 + 1 + + + 100665601 + 0 + + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + + + + + + YES + + YES + NSColor + NSCursor + NSUnderline + + + YES + + + + + + + + 0 + + 6 + {597, 10000000} + + + + {{1, 1}, {538, 443}} + + + + + + 4 + + + + 256 + {{523, 1}, {16, 443}} + + NO + + _doScroller: + 1 + 0.85256409645080566 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + NO + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{20, 102}, {540, 445}} + + + 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.render3DMultisample + cdsGPU.render3DThreads + cdsGPU.render3DFragmentSamplingHack + isGdbStubStarted + enableGdbStubARM9 + enableGdbStubARM7 + gdbStubPortARM9 + gdbStubPortARM7 + isInDebugTrap + + CocoaDSCore + + + + + YES + spuInterpolationMode + spuSyncMode + spuSyncMethod + spuAdvancedLogic + volume + audioOutputEngine + + YES + + + + + YES + isWorking + isRomLoading + statusText + currentVolumeValue + currentVolumeIcon + isShowingSaveStateDialog + isShowingFileMigrationDialog + isUserInterfaceBlockingExecution + currentSaveStateURL + selectedRomSaveTypeID + currentRom + mainWindow + mainWindow.displayRotation + mainWindow.videoFilterType + mainWindow.useBilinearOutput + mainWindow.useVerticalSync + mainWindow.screenshotFileFormat + selectedExportRomSaveID + mainWindow.displayGap + frameJumpType + frameJumpFramesForward + frameJumpToFrame + mainWindow.outputFilter + mainWindow.videoSourceDeposterize + mainWindow.videoFiltersPreferGPU + 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.videoOutputFilter + mainWindow.videoPixelScaler + mainWindow.view.canUseShaderBasedFilters + + 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 + + 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 + + + + + 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 + + + + prefGeneralView + + + + 2093 + + + + 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_DepthComparisonThreshold + + + + + + value: values.Render3D_DepthComparisonThreshold + value + values.Render3D_DepthComparisonThreshold + 2 + + + 3834 + + + + 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 + + + + cheatListWindow + + + + 5146 + + + + cheatWindowController + + + + 5147 + + + + 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: values.DisplayView_UseVerticalSync + + + + + + value: values.DisplayView_UseVerticalSync + value + values.DisplayView_UseVerticalSync + 2 + + + 6164 + + + + selectedTag: values.DisplayViewCombo_Orientation + + + + + + selectedTag: values.DisplayViewCombo_Orientation + selectedTag + values.DisplayViewCombo_Orientation + 2 + + + 6226 + + + + selectedTag: values.DisplayViewCombo_Order + + + + + + selectedTag: values.DisplayViewCombo_Order + selectedTag + values.DisplayViewCombo_Order + 2 + + + 6230 + + + + 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.Render3D_Multisample + + + + + + value: values.Render3D_Multisample + value + values.Render3D_Multisample + 2 + + + 6625 + + + + 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 + + + + changeCoreEmuFlags: + + + + 6723 + + + + changeCoreEmuFlags: + + + + 6724 + + + + changeCoreEmuFlags: + + + + 6725 + + + + changeCoreEmuFlags: + + + + 6726 + + + + changeCoreEmuFlags: + + + + 6727 + + + + changeCoreEmuFlags: + + + + 6728 + + + + changeCoreEmuFlags: + + + + 6729 + + + + changeCoreEmuFlags: + + + + 6730 + + + + changeCoreEmuFlags: + + + + 6731 + + + + 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 + + + + delegate + + + + 6809 + + + + cdsSoundController + + + + 6824 + + + + romInfoPanelController + + + + 6825 + + + + 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 + + + + 7004 + + + + 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.Render3D_DepthComparisonThreshold + + + + + + value: values.Render3D_DepthComparisonThreshold + value + values.Render3D_DepthComparisonThreshold + 2 + + + 8198 + + + + 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 + + + + saveScreenshotAs: + + + + 8241 + + + + 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 + + + + slot2Window + + + + 8509 + + + + 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 + + + + inputDeviceListController + + + + 8532 + + + + 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 + + + + selectedTag: selection.frameJumpType + + + + + + selectedTag: selection.frameJumpType + selectedTag + selection.frameJumpType + 2 + + + 9096 + + + + value: selection.frameJumpFramesForward + + + + + + value: selection.frameJumpFramesForward + value + selection.frameJumpFramesForward + 2 + + + 9097 + + + + value: selection.frameJumpToFrame + + + + + + value: selection.frameJumpToFrame + value + selection.frameJumpToFrame + 2 + + + 9098 + + + + 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.render3DDepthComparisonThreshold + + + + + + value: selection.cdsGPU.render3DDepthComparisonThreshold + value + selection.cdsGPU.render3DDepthComparisonThreshold + 2 + + + 9174 + + + + value: selection.cdsGPU.render3DDepthComparisonThreshold + + + + + + value: selection.cdsGPU.render3DDepthComparisonThreshold + value + selection.cdsGPU.render3DDepthComparisonThreshold + 2 + + + 9176 + + + + value: selection.cdsGPU.render3DMultisample + + + + + + value: selection.cdsGPU.render3DMultisample + value + selection.cdsGPU.render3DMultisample + 2 + + + 9178 + + + + 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 + + + + makeKeyAndOrderFront: + + + + 9275 + + + + selectedTag: selection.cdsGPU.render3DThreads + + + + + + selectedTag: selection.cdsGPU.render3DThreads + selectedTag + selection.cdsGPU.render3DThreads + 2 + + + 9298 + + + + value: selection.mainWindow.view.useVerticalSync + + + + + + value: selection.mainWindow.view.useVerticalSync + value + selection.mainWindow.view.useVerticalSync + 2 + + + 9318 + + + + value: selection.mainWindow.videoSourceDeposterize + + + + + + value: selection.mainWindow.videoSourceDeposterize + value + selection.mainWindow.videoSourceDeposterize + 2 + + + 9319 + + + + selectedTag: selection.mainWindow.videoOutputFilter + + + + + + selectedTag: selection.mainWindow.videoOutputFilter + selectedTag + selection.mainWindow.videoOutputFilter + 2 + + + 9320 + + + + selectedTag: selection.mainWindow.videoPixelScaler + + + + + + selectedTag: selection.mainWindow.videoPixelScaler + selectedTag + selection.mainWindow.videoPixelScaler + 2 + + + 9321 + + + + value: selection.mainWindow.videoFiltersPreferGPU + + + + + + value: selection.mainWindow.videoFiltersPreferGPU + value + selection.mainWindow.videoFiltersPreferGPU + 2 + + + 9322 + + + + 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 + + + + romInfoPanel + + + + 9887 + + + + disclosureButton + + + + 9888 + + + + disclosureButton + + + + 9889 + + + + disclosureButton + + + + 9890 + + + + disclosureButton + + + + 9891 + + + + disclosureButton + + + + 9892 + + + + sectionLabel + + + + 9893 + + + + sectionLabel + + + + 9894 + + + + sectionLabel + + + + 9895 + + + + sectionLabel + + + + 9896 + + + + sectionLabel + + + + 9897 + + + + + 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 + + + + + 833 + + + YES + + + + + + 834 + + + + + 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 + + + + + + + + + + + + + + 1626 + + + YES + + + + + + 1627 + + + YES + + + + + + 1628 + + + YES + + + + + + + + + + + + + + + + + + + + + + + 1629 + + + + + 1630 + + + + + 1631 + + + + + 1634 + + + YES + + + + + + 1635 + + + + + 1636 + + + + + 1637 + + + + + 1638 + + + + + 1639 + + + + + 1640 + + + + + 1641 + + + + + 1643 + + + + + 1646 + + + + + 1647 + + + + + 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 + + + + + 3644 + + + + + 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 + + + + + + 3787 + + + YES + + + + + + 3788 + + + 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 + + + + + + + + + + + + + + + 3775 + + + YES + + + + + + 3773 + + + YES + + + + + + 3771 + + + YES + + + + + + 3779 + + + YES + + + + Depth Comparison Threshold Text Field + + + 3782 + + + YES + + + + + + 3783 + + + + + 3780 + + + YES + + + + + + 3781 + + + + + 3772 + + + + + 3774 + + + + + 3776 + + + + + 3793 + + + YES + + + + + + 3794 + + + + + 3798 + + + YES + + + + + + + + + + + + + + + 3803 + + + YES + + + + + + 3802 + + + YES + + + + + + 3801 + + + YES + + + + + + 3800 + + + YES + + + + + + 3799 + + + YES + + + + + + 3811 + + + + + 3809 + + + YES + + + + + + 3810 + + + + + 3808 + + + + + 3807 + + + + + 3806 + + + + + 3837 + + + YES + + + + + + 3838 + + + YES + + + + + + + + + 3839 + + + + + 3840 + + + + + 3841 + + + + + 3843 + + + YES + + + + + + 3844 + + + YES + + + + + + 3845 + + + YES + + + + + + + + 3846 + + + + + 3847 + + + + + 3849 + + + YES + + + + + + 3850 + + + + + 3885 + + + YES + + + + + + 3899 + + + 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 + + + + + 2553 + + + + + 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 + + + + + 6159 + + + YES + + + + + + 6160 + + + + + 6161 + + + YES + + + + + + 6162 + + + + + 6168 + + + YES + + + + + + 6169 + + + YES + + + + + + + 6170 + + + + + 6171 + + + YES + + + + + + 6172 + + + YES + + + + + + + 6173 + + + + + 6174 + + + + + 6177 + + + + + 6180 + + + YES + + + + + + + + + + + + + + + 6182 + + + YES + + + + + + 6183 + + + YES + + + + + + 6184 + + + YES + + + + + + + + 6185 + + + + + 6186 + + + + + 6187 + + + + + 6188 + + + YES + + + + + + + + 6189 + + + + + 6190 + + + + + 6191 + + + + + 6233 + + + + + 6234 + + + + + 3777 + + + YES + + + + + + 3778 + + + + + 3804 + + + YES + + + + + + 3805 + + + + + 6238 + + + + + 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 + + + + + + 6618 + + + YES + + + + + + 6619 + + + + + 6622 + + + YES + + + + + + 6623 + + + YES + + + + + + 6624 + + + + + 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 + + + + + 2344 + + + YES + + + + + + + 2369 + + + YES + + + + + + 2367 + + + YES + + + + + + 2368 + + + + + 2370 + + + + + 5186 + + + YES + + + + + + 5188 + + + YES + + + + + + 5189 + + + + + 8186 + + + + + 8188 + + + YES + + + + + + 8189 + + + + + 8194 + + + YES + + + + + + 8195 + + + + + 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 + + + + + + + + + 9038 + + + + + 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 + + + + + 9144 + + + + + 9146 + + + + + 9148 + + + + + 9150 + + + + + 3900 + + + YES + + + + + + 3901 + + + + + 9152 + + + YES + + + + + + 9153 + + + + + 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 + + + + + 3888 + + + YES + + + + + + 3889 + + + YES + + + + + + 3890 + + + YES + + + + + + + + + + + + 6634 + + + + + 3891 + + + + + 3892 + + + + + 3893 + + + + + 3894 + + + + + 3896 + + + YES + + + + + + 3897 + + + + + 9259 + + + + + 9260 + + + + + 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 + + + + + + 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 + + + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 1034.IBPluginDependency + 1034.IBViewBoundsToFrameTransform + 1035.IBPluginDependency + 1036.IBPluginDependency + 1036.IBViewBoundsToFrameTransform + 1037.IBPluginDependency + 1038.IBPluginDependency + 1038.IBViewBoundsToFrameTransform + 1039.IBPluginDependency + 1040.IBPluginDependency + 1040.IBViewBoundsToFrameTransform + 1041.IBPluginDependency + 1113.IBPluginDependency + 1114.IBPluginDependency + 1115.IBPluginDependency + 1118.IBPluginDependency + 1119.IBPluginDependency + 112.IBPluginDependency + 1120.IBPluginDependency + 124.IBPluginDependency + 125.IBEditorWindowLastContentRect + 125.IBPluginDependency + 126.IBPluginDependency + 129.IBPluginDependency + 1298.IBEditorWindowLastContentRect + 1298.IBPluginDependency + 1299.IBAttributePlaceholdersKey + 1299.IBPluginDependency + 1299.IBViewBoundsToFrameTransform + 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.IBEditorWindowLastContentRect + 1527.IBPluginDependency + 1528.IBPluginDependency + 1529.IBPluginDependency + 1530.IBPluginDependency + 1531.IBPluginDependency + 1532.IBPluginDependency + 1538.IBPluginDependency + 1538.IBViewBoundsToFrameTransform + 1541.IBPluginDependency + 1541.IBViewBoundsToFrameTransform + 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.IBPluginDependency + 1615.IBAttributePlaceholdersKey + 1615.IBPluginDependency + 1615.IBViewBoundsToFrameTransform + 1616.IBPluginDependency + 1619.IBPluginDependency + 1620.IBPluginDependency + 1621.IBPluginDependency + 1626.IBAttributePlaceholdersKey + 1626.IBPluginDependency + 1626.IBViewBoundsToFrameTransform + 1627.IBPluginDependency + 1628.IBEditorWindowLastContentRect + 1628.IBPluginDependency + 1629.IBPluginDependency + 1630.IBPluginDependency + 1631.IBPluginDependency + 1634.IBPluginDependency + 1634.IBViewBoundsToFrameTransform + 1635.IBPluginDependency + 1636.IBPluginDependency + 1637.IBPluginDependency + 1638.IBPluginDependency + 1639.IBPluginDependency + 1640.IBPluginDependency + 1641.IBPluginDependency + 1643.IBPluginDependency + 1646.IBPluginDependency + 1647.IBPluginDependency + 1650.IBPluginDependency + 1650.IBViewBoundsToFrameTransform + 1651.IBPluginDependency + 1679.IBPluginDependency + 1679.designableToolbarItemIdentifier + 1679.toolbarItem.selectable + 1680.IBPluginDependency + 1680.designableToolbarItemIdentifier + 1680.toolbarItem.selectable + 1681.IBPluginDependency + 1681.designableToolbarItemIdentifier + 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 + 2155.IBPluginDependency + 2246.IBPluginDependency + 2246.designableToolbarItemIdentifier + 2246.toolbarItem.selectable + 2248.IBEditorWindowLastContentRect + 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.IBPluginDependency + 2340.IBPluginDependency + 2340.designableToolbarItemIdentifier + 2340.toolbarItem.selectable + 2341.IBPluginDependency + 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.IBEditorWindowLastContentRect + 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.IBEditorWindowLastContentRect + 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 + 2553.IBPluginDependency + 2556.IBPluginDependency + 2565.IBAttributePlaceholdersKey + 2565.IBPluginDependency + 2566.IBPluginDependency + 2604.IBPluginDependency + 2609.IBPluginDependency + 2610.IBPluginDependency + 2653.IBPluginDependency + 2809.IBPluginDependency + 2809.IBViewBoundsToFrameTransform + 2810.IBPluginDependency + 2811.IBPluginDependency + 2811.IBViewBoundsToFrameTransform + 2812.IBPluginDependency + 2813.IBPluginDependency + 2813.IBViewBoundsToFrameTransform + 2814.IBPluginDependency + 2815.IBPluginDependency + 2815.IBViewBoundsToFrameTransform + 2816.IBPluginDependency + 2816.IBViewBoundsToFrameTransform + 2817.IBPluginDependency + 2817.IBViewBoundsToFrameTransform + 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 + 3061.IBViewBoundsToFrameTransform + 3062.IBPluginDependency + 3063.IBPluginDependency + 3063.IBViewBoundsToFrameTransform + 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.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 + 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.IBPluginDependency + 3712.IBWindowTemplateEditedContentRect + 3712.NSWindowTemplate.visibleAtLaunch + 3713.IBPluginDependency + 3714.IBAttributePlaceholdersKey + 3714.IBPluginDependency + 3715.IBPluginDependency + 3716.IBPluginDependency + 3717.IBPluginDependency + 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 + 3774.IBPluginDependency + 3775.IBAttributePlaceholdersKey + 3775.IBPluginDependency + 3776.IBPluginDependency + 3777.IBAttributePlaceholdersKey + 3777.IBPluginDependency + 3777.IBViewBoundsToFrameTransform + 3778.IBPluginDependency + 3779.IBAttributePlaceholdersKey + 3779.IBPluginDependency + 3779.IBViewBoundsToFrameTransform + 3780.IBPluginDependency + 3781.IBNumberFormatterBehaviorMetadataKey + 3781.IBNumberFormatterLocalizesFormatMetadataKey + 3781.IBPluginDependency + 3782.IBPluginDependency + 3782.IBViewBoundsToFrameTransform + 3783.IBPluginDependency + 3784.IBPluginDependency + 3784.IBViewBoundsToFrameTransform + 3786.IBPluginDependency + 3786.IBViewBoundsToFrameTransform + 3787.IBPluginDependency + 3788.IBPluginDependency + 3789.IBPluginDependency + 3790.IBEditorWindowLastContentRect + 3790.IBPluginDependency + 3790.IBWindowTemplateEditedContentRect + 3790.NSWindowTemplate.visibleAtLaunch + 3791.IBPluginDependency + 3793.IBPluginDependency + 3793.IBViewBoundsToFrameTransform + 3794.IBPluginDependency + 3798.IBPluginDependency + 3798.IBViewBoundsToFrameTransform + 3799.IBPluginDependency + 3799.IBViewBoundsToFrameTransform + 3800.IBAttributePlaceholdersKey + 3800.IBPluginDependency + 3800.IBViewBoundsToFrameTransform + 3801.IBAttributePlaceholdersKey + 3801.IBPluginDependency + 3801.IBViewBoundsToFrameTransform + 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 + 3809.IBPluginDependency + 3810.IBNumberFormatterBehaviorMetadataKey + 3810.IBNumberFormatterLocalizesFormatMetadataKey + 3810.IBPluginDependency + 3811.IBPluginDependency + 3837.IBPluginDependency + 3838.IBPluginDependency + 3838.IBViewBoundsToFrameTransform + 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.IBPluginDependency + 3885.IBViewBoundsToFrameTransform + 3886.IBAttributePlaceholdersKey + 3886.IBPluginDependency + 3886.IBViewBoundsToFrameTransform + 3887.IBPluginDependency + 3888.IBAttributePlaceholdersKey + 3888.IBPluginDependency + 3888.IBViewBoundsToFrameTransform + 3889.IBPluginDependency + 3890.IBEditorWindowLastContentRect + 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.IBPluginDependency + 3899.IBViewBoundsToFrameTransform + 3900.IBAttributePlaceholdersKey + 3900.IBPluginDependency + 3900.IBViewBoundsToFrameTransform + 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.IBEditorWindowLastContentRect + 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 + 4278.IBPluginDependency + 4559.IBPluginDependency + 4560.IBPluginDependency + 4561.IBPluginDependency + 4562.IBPluginDependency + 4565.IBPluginDependency + 4574.IBPluginDependency + 4575.IBPluginDependency + 4576.IBEditorWindowLastContentRect + 4576.IBPluginDependency + 4577.IBPluginDependency + 4578.IBPluginDependency + 4580.IBPluginDependency + 4581.IBPluginDependency + 4582.IBPluginDependency + 4583.IBPluginDependency + 4583.IBViewBoundsToFrameTransform + 4584.IBPluginDependency + 4585.IBEditorWindowLastContentRect + 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.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.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 + 5003.IBViewBoundsToFrameTransform + 5004.IBPluginDependency + 5005.IBPluginDependency + 5006.IBPluginDependency + 5007.IBPluginDependency + 5008.IBPluginDependency + 5009.IBPluginDependency + 5066.IBPluginDependency + 5067.IBPluginDependency + 5068.IBAttributePlaceholdersKey + 5068.IBPluginDependency + 5069.IBPluginDependency + 5080.IBEditorWindowLastContentRect + 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 + 5171.IBViewBoundsToFrameTransform + 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.IBEditorWindowLastContentRect + 539.IBPluginDependency + 541.IBPluginDependency + 5419.IBPluginDependency + 542.IBEditorWindowLastContentRect + 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.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 + 6159.IBAttributePlaceholdersKey + 6159.IBPluginDependency + 6159.IBViewBoundsToFrameTransform + 6160.IBPluginDependency + 6161.IBAttributePlaceholdersKey + 6161.IBPluginDependency + 6161.IBViewBoundsToFrameTransform + 6162.IBPluginDependency + 6168.IBPluginDependency + 6169.IBEditorWindowLastContentRect + 6169.IBPluginDependency + 6170.IBPluginDependency + 6171.IBPluginDependency + 6172.IBEditorWindowLastContentRect + 6172.IBPluginDependency + 6173.IBPluginDependency + 6174.IBPluginDependency + 6177.IBPluginDependency + 6180.IBPluginDependency + 6182.IBPluginDependency + 6183.IBPluginDependency + 6184.IBPluginDependency + 6185.IBAttributePlaceholdersKey + 6185.IBPluginDependency + 6186.IBAttributePlaceholdersKey + 6186.IBPluginDependency + 6187.IBPluginDependency + 6188.IBPluginDependency + 6189.IBPluginDependency + 6190.IBAttributePlaceholdersKey + 6190.IBPluginDependency + 6191.IBAttributePlaceholdersKey + 6191.IBPluginDependency + 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.IBEditorWindowLastContentRect + 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 + 6618.IBAttributePlaceholdersKey + 6618.IBPluginDependency + 6619.IBPluginDependency + 6622.IBPluginDependency + 6622.IBViewBoundsToFrameTransform + 6623.IBAttributePlaceholdersKey + 6623.IBPluginDependency + 6624.IBPluginDependency + 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.IBEditorWindowLastContentRect + 7171.IBPluginDependency + 7171.IBWindowTemplateEditedContentRect + 7171.NSWindowTemplate.visibleAtLaunch + 7172.IBPluginDependency + 7173.IBEditorWindowLastContentRect + 7173.IBPluginDependency + 7173.IBWindowTemplateEditedContentRect + 7173.NSWindowTemplate.visibleAtLaunch + 7174.IBPluginDependency + 7175.IBEditorWindowLastContentRect + 7175.IBPluginDependency + 7175.IBWindowTemplateEditedContentRect + 7175.NSWindowTemplate.visibleAtLaunch + 7176.IBPluginDependency + 7179.IBEditorWindowLastContentRect + 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.IBEditorWindowLastContentRect + 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 + 7293.IBViewBoundsToFrameTransform + 7294.IBNumberFormatterBehaviorMetadataKey + 7294.IBNumberFormatterLocalizesFormatMetadataKey + 7294.IBPluginDependency + 7295.IBNumberFormatterBehaviorMetadataKey + 7295.IBNumberFormatterLocalizesFormatMetadataKey + 7295.IBPluginDependency + 7301.IBPluginDependency + 7301.IBViewBoundsToFrameTransform + 7302.IBPluginDependency + 7305.IBPluginDependency + 7305.IBViewBoundsToFrameTransform + 7308.IBPluginDependency + 7309.IBPluginDependency + 7312.IBPluginDependency + 7313.IBPluginDependency + 7316.IBPluginDependency + 7317.IBPluginDependency + 7320.IBPluginDependency + 7353.IBPluginDependency + 7354.IBPluginDependency + 7355.IBPluginDependency + 7358.IBPluginDependency + 7358.IBViewBoundsToFrameTransform + 7359.IBPluginDependency + 7392.IBPluginDependency + 7392.IBViewBoundsToFrameTransform + 7393.IBPluginDependency + 7395.IBPluginDependency + 7395.IBViewBoundsToFrameTransform + 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 + 7442.IBViewBoundsToFrameTransform + 7443.IBPluginDependency + 7445.IBPluginDependency + 7445.IBViewBoundsToFrameTransform + 7446.IBPluginDependency + 7449.IBEditorWindowLastContentRect + 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.IBEditorWindowLastContentRect + 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 + 7805.IBPluginDependency + 7806.IBPluginDependency + 7807.IBPluginDependency + 7808.IBPluginDependency + 7809.IBPluginDependency + 7810.IBPluginDependency + 7811.IBPluginDependency + 7812.IBPluginDependency + 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 + 7837.IBPluginDependency + 7838.IBPluginDependency + 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 + 7848.IBPluginDependency + 785.IBPluginDependency + 7855.IBEditorWindowLastContentRect + 7855.IBPluginDependency + 7855.IBWindowTemplateEditedContentRect + 7855.NSWindowTemplate.visibleAtLaunch + 7856.IBPluginDependency + 7857.IBPluginDependency + 7857.IBViewBoundsToFrameTransform + 7858.IBPluginDependency + 7859.IBPluginDependency + 7860.IBPluginDependency + 7861.IBPluginDependency + 7862.IBAttributePlaceholdersKey + 7862.IBPluginDependency + 7863.IBPluginDependency + 7863.IBViewBoundsToFrameTransform + 7864.IBPluginDependency + 7866.IBAttributePlaceholdersKey + 7866.IBPluginDependency + 7866.IBViewBoundsToFrameTransform + 7867.IBPluginDependency + 787.IBPluginDependency + 7871.IBAttributePlaceholdersKey + 7871.IBPluginDependency + 7871.IBViewBoundsToFrameTransform + 7872.IBPluginDependency + 7873.IBAttributePlaceholdersKey + 7873.IBPluginDependency + 7873.IBViewBoundsToFrameTransform + 7874.IBPluginDependency + 7875.IBPluginDependency + 7875.IBViewBoundsToFrameTransform + 7876.IBPluginDependency + 7879.IBPluginDependency + 7879.IBViewBoundsToFrameTransform + 788.IBEditorWindowLastContentRect + 788.IBPluginDependency + 7880.IBPluginDependency + 7880.IBViewBoundsToFrameTransform + 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.IBPluginDependency + 796.IBWindowTemplateEditedContentRect + 796.NSWindowTemplate.visibleAtLaunch + 797.IBPluginDependency + 7971.IBPluginDependency + 7971.IBViewBoundsToFrameTransform + 7972.IBPluginDependency + 7972.IBViewBoundsToFrameTransform + 7973.IBPluginDependency + 7974.IBPluginDependency + 7978.IBPluginDependency + 7978.IBViewBoundsToFrameTransform + 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 + 8009.IBViewBoundsToFrameTransform + 8012.IBPluginDependency + 8013.IBPluginDependency + 8014.IBPluginDependency + 8015.IBPluginDependency + 8016.IBPluginDependency + 8021.IBPluginDependency + 8022.IBPluginDependency + 8023.IBPluginDependency + 8024.IBPluginDependency + 8025.IBPluginDependency + 8030.IBPluginDependency + 8030.IBViewBoundsToFrameTransform + 8031.IBPluginDependency + 8031.IBViewBoundsToFrameTransform + 8032.IBPluginDependency + 8032.IBViewBoundsToFrameTransform + 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.IBPluginDependency + 8182.IBPluginDependency + 8183.IBPluginDependency + 8184.IBPluginDependency + 8185.IBPluginDependency + 8186.IBPluginDependency + 8188.IBPluginDependency + 8188.IBViewBoundsToFrameTransform + 8189.IBPluginDependency + 8194.IBPluginDependency + 8194.IBViewBoundsToFrameTransform + 8195.IBPluginDependency + 823.IBPluginDependency + 824.IBPluginDependency + 8245.IBPluginDependency + 8246.IBEditorWindowLastContentRect + 8246.IBPluginDependency + 825.IBPluginDependency + 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 + 828.IBPluginDependency + 829.IBPluginDependency + 8295.IBPluginDependency + 83.IBPluginDependency + 830.IBPluginDependency + 8302.IBAttributePlaceholdersKey + 8302.IBPluginDependency + 8302.IBViewBoundsToFrameTransform + 8303.IBPluginDependency + 8307.IBPluginDependency + 8308.IBPluginDependency + 8308.IBViewBoundsToFrameTransform + 8309.IBPluginDependency + 831.IBPluginDependency + 8310.IBPluginDependency + 8316.IBPluginDependency + 832.IBPluginDependency + 8322.IBAttributePlaceholdersKey + 8322.IBPluginDependency + 8322.IBViewBoundsToFrameTransform + 8323.IBPluginDependency + 833.IBPluginDependency + 8331.IBEditorWindowLastContentRect + 8331.IBPluginDependency + 8331.IBWindowTemplateEditedContentRect + 8331.NSWindowTemplate.visibleAtLaunch + 8332.IBPluginDependency + 8333.IBPluginDependency + 8333.IBViewBoundsToFrameTransform + 8334.IBPluginDependency + 8335.IBPluginDependency + 8336.IBPluginDependency + 8338.IBPluginDependency + 834.IBPluginDependency + 8341.IBPluginDependency + 8343.IBPluginDependency + 8343.IBViewBoundsToFrameTransform + 8344.IBPluginDependency + 8344.IBViewBoundsToFrameTransform + 8345.IBAttributePlaceholdersKey + 8345.IBPluginDependency + 8345.IBViewBoundsToFrameTransform + 8346.IBPluginDependency + 835.IBPluginDependency + 8352.IBPluginDependency + 8354.IBPluginDependency + 8356.IBPluginDependency + 836.IBPluginDependency + 8363.IBPluginDependency + 8363.IBViewBoundsToFrameTransform + 8364.IBPluginDependency + 8365.IBPluginDependency + 8365.IBViewBoundsToFrameTransform + 8366.IBEditorWindowLastContentRect + 8366.IBPluginDependency + 8366.IBViewBoundsToFrameTransform + 8367.IBPluginDependency + 8367.IBViewBoundsToFrameTransform + 8368.IBPluginDependency + 8369.IBEditorWindowLastContentRect + 8369.IBPluginDependency + 8369.IBViewBoundsToFrameTransform + 8377.IBPluginDependency + 8377.IBViewBoundsToFrameTransform + 8378.IBPluginDependency + 8379.IBEditorWindowLastContentRect + 8379.IBPluginDependency + 8380.IBPluginDependency + 8381.IBPluginDependency + 8382.IBPluginDependency + 8383.IBPluginDependency + 8384.IBPluginDependency + 8385.IBPluginDependency + 8386.IBPluginDependency + 8387.IBPluginDependency + 8387.IBViewBoundsToFrameTransform + 8388.IBPluginDependency + 8402.IBEditorWindowLastContentRect + 8402.IBPluginDependency + 8402.IBViewBoundsToFrameTransform + 8405.IBEditorWindowLastContentRect + 8405.IBPluginDependency + 8405.IBViewBoundsToFrameTransform + 8408.IBEditorWindowLastContentRect + 8408.IBPluginDependency + 8408.IBViewBoundsToFrameTransform + 8409.IBPluginDependency + 8409.IBViewBoundsToFrameTransform + 8410.IBPluginDependency + 8411.IBPluginDependency + 8411.IBViewBoundsToFrameTransform + 8412.IBPluginDependency + 8413.IBPluginDependency + 8413.IBViewBoundsToFrameTransform + 8414.IBPluginDependency + 8415.IBPluginDependency + 8415.IBViewBoundsToFrameTransform + 8416.IBPluginDependency + 8427.IBPluginDependency + 8427.IBViewBoundsToFrameTransform + 8428.IBEditorWindowLastContentRect + 8428.IBPluginDependency + 8428.IBViewBoundsToFrameTransform + 843.IBPluginDependency + 844.IBPluginDependency + 8445.IBEditorWindowLastContentRect + 8445.IBPluginDependency + 8445.IBViewBoundsToFrameTransform + 8446.IBPluginDependency + 8446.IBViewBoundsToFrameTransform + 8447.IBPluginDependency + 8448.IBEditorWindowLastContentRect + 8448.IBPluginDependency + 8448.IBViewBoundsToFrameTransform + 845.IBPluginDependency + 845.IBViewBoundsToFrameTransform + 8451.IBEditorWindowLastContentRect + 8451.IBPluginDependency + 8451.IBViewBoundsToFrameTransform + 8454.IBEditorWindowLastContentRect + 8454.IBPluginDependency + 8454.IBViewBoundsToFrameTransform + 8455.IBPluginDependency + 8455.IBViewBoundsToFrameTransform + 8456.IBPluginDependency + 8457.IBPluginDependency + 8457.IBViewBoundsToFrameTransform + 8458.IBPluginDependency + 846.IBPluginDependency + 8477.IBPluginDependency + 8477.IBViewBoundsToFrameTransform + 8478.IBPluginDependency + 8499.IBPluginDependency + 8499.IBViewBoundsToFrameTransform + 850.IBPluginDependency + 8500.IBPluginDependency + 8501.IBAttributePlaceholdersKey + 8501.IBPluginDependency + 8501.IBViewBoundsToFrameTransform + 8502.IBPluginDependency + 8512.IBPluginDependency + 8512.IBViewBoundsToFrameTransform + 8513.IBPluginDependency + 8514.IBPluginDependency + 8515.IBPluginDependency + 8517.IBPluginDependency + 8518.IBPluginDependency + 8519.IBPluginDependency + 8523.IBPluginDependency + 8525.IBPluginDependency + 8525.IBViewBoundsToFrameTransform + 8526.IBPluginDependency + 8527.IBPluginDependency + 8535.IBPluginDependency + 855.IBPluginDependency + 8552.IBEditorWindowLastContentRect + 8552.IBPluginDependency + 8552.IBViewBoundsToFrameTransform + 8553.IBPluginDependency + 8553.IBViewBoundsToFrameTransform + 8554.IBPluginDependency + 8557.IBPluginDependency + 8557.IBViewBoundsToFrameTransform + 8558.IBPluginDependency + 8558.IBViewBoundsToFrameTransform + 8559.IBPluginDependency + 8559.IBViewBoundsToFrameTransform + 8560.IBPluginDependency + 8561.IBPluginDependency + 8568.IBPluginDependency + 8568.IBViewBoundsToFrameTransform + 8569.IBPluginDependency + 8569.IBViewBoundsToFrameTransform + 8570.IBPluginDependency + 8571.IBPluginDependency + 8571.IBViewBoundsToFrameTransform + 8572.IBPluginDependency + 8575.IBPluginDependency + 8575.IBViewBoundsToFrameTransform + 8576.IBPluginDependency + 8578.IBPluginDependency + 8578.IBViewBoundsToFrameTransform + 8579.IBPluginDependency + 8596.IBEditorWindowLastContentRect + 8596.IBPluginDependency + 8596.IBWindowTemplateEditedContentRect + 8596.NSWindowTemplate.visibleAtLaunch + 8597.IBPluginDependency + 8598.IBPluginDependency + 8598.IBViewBoundsToFrameTransform + 8599.IBPluginDependency + 8608.IBPluginDependency + 8608.IBViewBoundsToFrameTransform + 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 + 8610.IBViewBoundsToFrameTransform + 8611.IBPluginDependency + 8612.IBPluginDependency + 8612.IBViewBoundsToFrameTransform + 862.IBPluginDependency + 8635.IBNumberFormatterBehaviorMetadataKey + 8635.IBNumberFormatterLocalizesFormatMetadataKey + 8635.IBNumberFormatterSampleNumberKey + 8635.IBPluginDependency + 8638.IBPluginDependency + 8638.IBViewBoundsToFrameTransform + 8639.IBPluginDependency + 8639.IBViewBoundsToFrameTransform + 8640.IBPluginDependency + 8641.IBPluginDependency + 865.IBPluginDependency + 865.IBViewBoundsToFrameTransform + 8653.IBPluginDependency + 8653.IBViewBoundsToFrameTransform + 8654.IBPluginDependency + 8655.IBPluginDependency + 8655.IBViewBoundsToFrameTransform + 8656.IBPluginDependency + 866.IBPluginDependency + 8660.IBPluginDependency + 8660.IBViewBoundsToFrameTransform + 8661.IBPluginDependency + 8663.IBPluginDependency + 8663.IBViewBoundsToFrameTransform + 8664.IBPluginDependency + 8667.IBPluginDependency + 8667.IBViewBoundsToFrameTransform + 8668.IBPluginDependency + 8677.IBPluginDependency + 8677.IBViewBoundsToFrameTransform + 8678.IBPluginDependency + 8679.IBPluginDependency + 8679.IBViewBoundsToFrameTransform + 8680.IBPluginDependency + 8681.IBPluginDependency + 8681.IBViewBoundsToFrameTransform + 8682.IBPluginDependency + 8687.IBPluginDependency + 8687.IBViewBoundsToFrameTransform + 8688.IBPluginDependency + 8688.IBViewBoundsToFrameTransform + 8689.IBPluginDependency + 8689.IBViewBoundsToFrameTransform + 8690.IBPluginDependency + 8691.IBPluginDependency + 8692.IBPluginDependency + 8706.IBPluginDependency + 8706.IBViewBoundsToFrameTransform + 8707.IBPluginDependency + 8718.IBPluginDependency + 8718.IBViewBoundsToFrameTransform + 8719.IBPluginDependency + 8722.IBPluginDependency + 8722.IBViewBoundsToFrameTransform + 8723.IBPluginDependency + 8724.IBPluginDependency + 8724.IBViewBoundsToFrameTransform + 8725.IBPluginDependency + 8727.IBPluginDependency + 8727.IBViewBoundsToFrameTransform + 8730.IBPluginDependency + 8730.IBViewBoundsToFrameTransform + 8731.IBPluginDependency + 8735.IBPluginDependency + 8735.IBViewBoundsToFrameTransform + 8736.IBPluginDependency + 8739.IBPluginDependency + 8740.IBPluginDependency + 8741.IBPluginDependency + 8741.IBViewBoundsToFrameTransform + 8742.IBPluginDependency + 8742.IBViewBoundsToFrameTransform + 8743.IBPluginDependency + 8744.IBPluginDependency + 8746.IBPluginDependency + 8746.IBViewBoundsToFrameTransform + 8747.IBPluginDependency + 8758.IBPluginDependency + 879.IBPluginDependency + 879.IBViewBoundsToFrameTransform + 880.IBPluginDependency + 883.IBPluginDependency + 883.IBViewBoundsToFrameTransform + 884.IBPluginDependency + 885.IBPluginDependency + 885.IBViewBoundsToFrameTransform + 886.IBPluginDependency + 887.IBPluginDependency + 887.IBViewBoundsToFrameTransform + 888.IBPluginDependency + 889.IBPluginDependency + 889.IBViewBoundsToFrameTransform + 890.IBPluginDependency + 897.IBPluginDependency + 897.IBViewBoundsToFrameTransform + 8975.IBPluginDependency + 8976.IBPluginDependency + 8978.IBPluginDependency + 8979.IBPluginDependency + 898.IBPluginDependency + 899.IBPluginDependency + 899.IBViewBoundsToFrameTransform + 8991.IBEditorWindowLastContentRect + 8991.IBPluginDependency + 8991.IBWindowTemplateEditedContentRect + 8991.NSWindowTemplate.visibleAtLaunch + 8992.IBPluginDependency + 8993.IBAttributePlaceholdersKey + 8993.IBPluginDependency + 8993.IBViewBoundsToFrameTransform + 8994.IBPluginDependency + 8995.IBAttributePlaceholdersKey + 8995.IBPluginDependency + 8995.IBViewBoundsToFrameTransform + 8996.IBPluginDependency + 8997.IBAttributePlaceholdersKey + 8997.IBPluginDependency + 8997.IBViewBoundsToFrameTransform + 8998.IBPluginDependency + 900.IBPluginDependency + 9001.IBAttributePlaceholdersKey + 9001.IBPluginDependency + 9001.IBViewBoundsToFrameTransform + 9002.IBPluginDependency + 9007.IBPluginDependency + 901.IBPluginDependency + 901.IBViewBoundsToFrameTransform + 9019.IBAttributePlaceholdersKey + 9019.IBPluginDependency + 9019.IBViewBoundsToFrameTransform + 902.IBPluginDependency + 9020.IBPluginDependency + 903.IBPluginDependency + 903.IBViewBoundsToFrameTransform + 9032.IBPluginDependency + 9032.IBViewBoundsToFrameTransform + 9033.IBPluginDependency + 9034.IBPluginDependency + 9034.IBViewBoundsToFrameTransform + 9035.IBPluginDependency + 9036.IBPluginDependency + 9037.IBPluginDependency + 9039.IBPluginDependency + 9039.IBViewBoundsToFrameTransform + 904.IBPluginDependency + 9040.IBPluginDependency + 9041.IBPluginDependency + 9041.IBViewBoundsToFrameTransform + 9042.IBPluginDependency + 9042.IBViewBoundsToFrameTransform + 9043.IBPluginDependency + 9043.IBViewBoundsToFrameTransform + 9044.IBPluginDependency + 9044.IBViewBoundsToFrameTransform + 9045.IBPluginDependency + 9045.IBViewBoundsToFrameTransform + 9046.IBPluginDependency + 9046.IBViewBoundsToFrameTransform + 9047.IBPluginDependency + 9047.IBViewBoundsToFrameTransform + 9049.IBPluginDependency + 9049.IBViewBoundsToFrameTransform + 905.IBPluginDependency + 905.IBViewBoundsToFrameTransform + 9050.IBPluginDependency + 9050.IBViewBoundsToFrameTransform + 9051.IBPluginDependency + 9051.IBViewBoundsToFrameTransform + 9052.IBPluginDependency + 9053.IBPluginDependency + 9055.IBPluginDependency + 9057.IBPluginDependency + 9058.IBPluginDependency + 9059.IBPluginDependency + 906.IBPluginDependency + 9060.IBPluginDependency + 9061.IBPluginDependency + 9062.IBPluginDependency + 9063.IBPluginDependency + 907.IBPluginDependency + 907.IBViewBoundsToFrameTransform + 9071.IBPluginDependency + 9071.IBViewBoundsToFrameTransform + 9072.IBPluginDependency + 9072.IBViewBoundsToFrameTransform + 9075.IBPluginDependency + 9075.IBViewBoundsToFrameTransform + 9076.IBPluginDependency + 908.IBPluginDependency + 9083.IBPluginDependency + 9084.IBPluginDependency + 9085.IBPluginDependency + 9086.IBPluginDependency + 9087.IBPluginDependency + 9087.IBViewBoundsToFrameTransform + 9088.IBPluginDependency + 9089.IBPluginDependency + 9089.IBViewBoundsToFrameTransform + 909.IBPluginDependency + 909.IBViewBoundsToFrameTransform + 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 + 9106.IBViewBoundsToFrameTransform + 9107.IBPluginDependency + 9109.IBPluginDependency + 9109.IBViewBoundsToFrameTransform + 911.IBPluginDependency + 911.IBViewBoundsToFrameTransform + 9110.IBPluginDependency + 9112.IBPluginDependency + 9112.IBViewBoundsToFrameTransform + 9113.IBPluginDependency + 9113.IBViewBoundsToFrameTransform + 9114.IBPluginDependency + 9115.IBPluginDependency + 912.IBPluginDependency + 9129.IBPluginDependency + 913.IBPluginDependency + 913.IBViewBoundsToFrameTransform + 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 + 9152.IBViewBoundsToFrameTransform + 9153.IBPluginDependency + 9156.IBAttributePlaceholdersKey + 9156.IBPluginDependency + 9156.IBViewBoundsToFrameTransform + 9157.IBPluginDependency + 9184.IBAttributePlaceholdersKey + 9184.IBPluginDependency + 9184.IBViewBoundsToFrameTransform + 9185.IBPluginDependency + 9185.IBViewBoundsToFrameTransform + 9186.IBPluginDependency + 9187.IBPluginDependency + 9188.IBEditorWindowLastContentRect + 9188.IBPluginDependency + 9195.IBPluginDependency + 92.IBPluginDependency + 9206.IBPluginDependency + 9208.IBPluginDependency + 9209.IBPluginDependency + 9210.IBPluginDependency + 9211.IBPluginDependency + 9236.IBPluginDependency + 9236.IBViewBoundsToFrameTransform + 9237.IBAttributePlaceholdersKey + 9237.IBPluginDependency + 9237.IBViewBoundsToFrameTransform + 9238.IBPluginDependency + 924.IBPluginDependency + 924.IBViewBoundsToFrameTransform + 925.IBPluginDependency + 9257.IBAttributePlaceholdersKey + 9257.IBPluginDependency + 9257.IBViewBoundsToFrameTransform + 9258.IBPluginDependency + 9259.IBAttributePlaceholdersKey + 9259.IBPluginDependency + 926.IBPluginDependency + 926.IBViewBoundsToFrameTransform + 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 + 9278.IBViewBoundsToFrameTransform + 9279.IBPluginDependency + 9279.IBViewBoundsToFrameTransform + 928.IBPluginDependency + 928.IBViewBoundsToFrameTransform + 9280.IBAttributePlaceholdersKey + 9280.IBPluginDependency + 9280.IBViewBoundsToFrameTransform + 9281.IBPluginDependency + 9282.IBPluginDependency + 9282.IBViewBoundsToFrameTransform + 9283.IBPluginDependency + 9284.IBPluginDependency + 9285.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 + 930.IBViewBoundsToFrameTransform + 9300.IBPluginDependency + 9301.IBPluginDependency + 9302.IBPluginDependency + 931.IBPluginDependency + 932.IBPluginDependency + 932.IBViewBoundsToFrameTransform + 933.IBPluginDependency + 934.IBPluginDependency + 934.IBViewBoundsToFrameTransform + 935.IBPluginDependency + 936.IBPluginDependency + 936.IBViewBoundsToFrameTransform + 937.IBPluginDependency + 938.IBPluginDependency + 938.IBViewBoundsToFrameTransform + 9389.IBEditorWindowLastContentRect + 9389.IBPluginDependency + 9389.IBWindowTemplateEditedContentRect + 9389.NSWindowTemplate.visibleAtLaunch + 939.IBPluginDependency + 9390.IBPluginDependency + 9392.IBPluginDependency + 9392.IBViewBoundsToFrameTransform + 9393.IBPluginDependency + 9393.IBViewBoundsToFrameTransform + 9394.IBPluginDependency + 9394.IBViewBoundsToFrameTransform + 9395.IBPluginDependency + 9395.IBViewBoundsToFrameTransform + 9396.IBPluginDependency + 9396.IBViewBoundsToFrameTransform + 9397.IBPluginDependency + 9397.IBViewBoundsToFrameTransform + 940.IBPluginDependency + 940.IBViewBoundsToFrameTransform + 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 + 942.IBViewBoundsToFrameTransform + 9424.IBPluginDependency + 9424.IBViewBoundsToFrameTransform + 9425.IBPluginDependency + 943.IBPluginDependency + 944.IBPluginDependency + 944.IBViewBoundsToFrameTransform + 945.IBPluginDependency + 946.IBPluginDependency + 946.IBViewBoundsToFrameTransform + 947.IBPluginDependency + 948.IBPluginDependency + 948.IBViewBoundsToFrameTransform + 949.IBPluginDependency + 949.IBViewBoundsToFrameTransform + 950.IBPluginDependency + 951.IBPluginDependency + 952.IBPluginDependency + 952.IBViewBoundsToFrameTransform + 9525.IBPluginDependency + 9525.IBViewBoundsToFrameTransform + 9526.IBPluginDependency + 953.IBPluginDependency + 953.IBViewBoundsToFrameTransform + 954.IBPluginDependency + 955.IBPluginDependency + 956.IBPluginDependency + 956.IBViewBoundsToFrameTransform + 957.IBPluginDependency + 957.IBViewBoundsToFrameTransform + 958.IBPluginDependency + 959.IBPluginDependency + 960.IBPluginDependency + 960.IBViewBoundsToFrameTransform + 961.IBPluginDependency + 961.IBViewBoundsToFrameTransform + 962.IBPluginDependency + 963.IBPluginDependency + 9633.IBPluginDependency + 9633.IBViewBoundsToFrameTransform + 9634.IBPluginDependency + 9634.IBViewBoundsToFrameTransform + 9635.IBPluginDependency + 9636.IBPluginDependency + 9637.IBPluginDependency + 9638.IBPluginDependency + 9639.IBPluginDependency + 964.IBPluginDependency + 964.IBViewBoundsToFrameTransform + 9640.IBPluginDependency + 9641.IBPluginDependency + 9642.IBPluginDependency + 9643.IBEditorWindowLastContentRect + 9643.IBPluginDependency + 9644.IBPluginDependency + 9645.IBPluginDependency + 9646.IBPluginDependency + 9647.IBPluginDependency + 9648.IBPluginDependency + 9649.IBPluginDependency + 965.IBPluginDependency + 965.IBViewBoundsToFrameTransform + 9650.IBPluginDependency + 9651.IBPluginDependency + 9652.IBPluginDependency + 9653.IBPluginDependency + 9654.IBPluginDependency + 9655.IBPluginDependency + 9656.IBPluginDependency + 9657.IBPluginDependency + 9658.IBPluginDependency + 966.IBPluginDependency + 967.IBPluginDependency + 9677.IBPluginDependency + 9677.IBViewBoundsToFrameTransform + 968.IBPluginDependency + 968.IBViewBoundsToFrameTransform + 969.IBPluginDependency + 969.IBViewBoundsToFrameTransform + 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 + 9714.IBViewBoundsToFrameTransform + 9715.IBPluginDependency + 9715.IBViewBoundsToFrameTransform + 9716.IBPluginDependency + 9717.IBPluginDependency + 9732.IBPluginDependency + 9733.IBPluginDependency + 9734.IBPluginDependency + 9735.IBPluginDependency + 9752.IBPluginDependency + 9752.IBViewBoundsToFrameTransform + 9753.IBPluginDependency + 9754.IBPluginDependency + 9755.IBPluginDependency + 9756.IBPluginDependency + 9757.IBPluginDependency + 9758.IBPluginDependency + 9759.IBPluginDependency + 977.IBPluginDependency + 9776.IBPluginDependency + 9777.IBPluginDependency + 9777.IBViewBoundsToFrameTransform + 9778.IBPluginDependency + 9779.IBPluginDependency + 9779.IBViewBoundsToFrameTransform + 978.IBPluginDependency + 9780.IBPluginDependency + 979.IBPluginDependency + 9796.IBPluginDependency + 9796.IBViewBoundsToFrameTransform + 9797.IBPluginDependency + 9797.IBViewBoundsToFrameTransform + 9798.IBPluginDependency + 980.IBPluginDependency + 9803.IBPluginDependency + 9803.IBViewBoundsToFrameTransform + 9804.IBPluginDependency + 9805.IBAttributePlaceholdersKey + 9805.IBPluginDependency + 9805.IBViewBoundsToFrameTransform + 9806.IBPluginDependency + 9806.IBViewBoundsToFrameTransform + 9807.IBPluginDependency + 9807.IBViewBoundsToFrameTransform + 9808.IBPluginDependency + 9808.IBViewBoundsToFrameTransform + 9809.IBPluginDependency + 9810.IBPluginDependency + 9811.IBAttributePlaceholdersKey + 9811.IBPluginDependency + 9811.IBViewBoundsToFrameTransform + 9812.IBPluginDependency + 9812.IBViewBoundsToFrameTransform + 9813.IBAttributePlaceholdersKey + 9813.IBPluginDependency + 9813.IBViewBoundsToFrameTransform + 9814.IBPluginDependency + 9814.IBViewBoundsToFrameTransform + 9815.IBPluginDependency + 9815.IBViewBoundsToFrameTransform + 9816.IBPluginDependency + 9817.IBPluginDependency + 9818.IBPluginDependency + 9818.IBViewBoundsToFrameTransform + 9819.IBAttributePlaceholdersKey + 9819.IBPluginDependency + 9819.IBViewBoundsToFrameTransform + 9820.IBPluginDependency + 9820.IBViewBoundsToFrameTransform + 9821.IBPluginDependency + 9821.IBViewBoundsToFrameTransform + 9822.IBPluginDependency + 9823.IBPluginDependency + 9824.IBPluginDependency + 9824.IBViewBoundsToFrameTransform + 9825.IBPluginDependency + 9826.IBPluginDependency + 9827.IBPluginDependency + 9829.IBPluginDependency + 9829.IBViewBoundsToFrameTransform + 9830.IBPluginDependency + 9830.IBViewBoundsToFrameTransform + 9831.IBPluginDependency + 9831.IBViewBoundsToFrameTransform + 9832.IBAttributePlaceholdersKey + 9832.IBPluginDependency + 9832.IBViewBoundsToFrameTransform + 9857.IBPluginDependency + 9858.IBPluginDependency + 9865.IBPluginDependency + 9865.IBViewBoundsToFrameTransform + 9866.IBPluginDependency + 9866.IBViewBoundsToFrameTransform + 9867.IBPluginDependency + 9868.IBPluginDependency + 9870.IBPluginDependency + 9870.IBViewBoundsToFrameTransform + 9871.IBPluginDependency + 9871.IBViewBoundsToFrameTransform + 9872.IBPluginDependency + 9873.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDJQAAxFUAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDJQAAxFCAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDJQAAxEwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSAAAwpgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{807, 773}, {143, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{629, 434}, {520, 422}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBgAAAwmgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 DS display views. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1014, 761}, {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 DS display views. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{989, 796}, {126, 113}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABDioAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDiIAAwhAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{1061, 976}, {196, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + The default rotation for new DS 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 + {{461, 155}, {489, 437}} + com.apple.InterfaceBuilder.CocoaPlugin + + InitialTabViewItem + + InitialTabViewItem + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBUAAAw9IAAA + + 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 DS display views, producing a variety of visual effects. CPU usage is dependent on which scaler is used. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDJwAAw5MAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{640, 111}, {151, 363}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCbAAAw6IAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABCbAAAw6+AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + Input + + com.apple.InterfaceBuilder.CocoaPlugin + General + + com.apple.InterfaceBuilder.CocoaPlugin + Display + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1227, 664}, {213, 198}} + com.apple.InterfaceBuilder.CocoaPlugin + {{1227, 664}, {213, 198}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + Sound + + {{875, 468}, {400, 373}} + 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 + {{1022, 901}, {132, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + New display views will show both DS screens by default. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + New display views will show only the DS touch screen 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 + {{578, 247}, {554, 373}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + Emulation + + com.apple.InterfaceBuilder.CocoaPlugin + 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 + {{1164, 492}, {160, 293}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{990, 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 + {{571, 529}, {204, 63}} + 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 + 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 + + P4AAAL+AAABCtAAAw5oAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAxA5AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCvgAAw00AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAw9yAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAw7yAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCvgAAwlwAAA + + 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 + {{432, 820}, {512, 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 + {{995, 772}, {307, 363}} + 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+AAABDDQAAwnwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABDNgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{439, 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 + com.apple.InterfaceBuilder.CocoaPlugin + {{1241, 208}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{657, 415}, {640, 480}} + com.apple.InterfaceBuilder.CocoaPlugin + {{657, 415}, {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+AAABBkAAAw7kAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{942, 249}, {288, 511}} + com.apple.InterfaceBuilder.CocoaPlugin + {{942, 249}, {288, 511}} + + 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 + + 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 DS. No CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + When set, SoftRasterizer will render fog effects. This may affect the atmospheric look of 3D scenes. Very low CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + 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). May slightly reduce CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + When set, SoftRasterizer will adjust the order of its polygon rendering. This may improve the look of some games, such as the appearance of shadows in "The Legend of Zelda: Spirit Tracks." No CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDOQAAwgAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwywAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABCsAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABDhzSAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{873, 390}, {301, 467}} + com.apple.InterfaceBuilder.CocoaPlugin + {{873, 390}, {301, 467}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCkgAAwgwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUKAAABC5gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwfAAAA + + + ToolTip + + ToolTip + + When set, SoftRasterizer will adjust the order of its polygon rendering. This may improve the look of some games, such as the appearance of shadows in "The Legend of Zelda: Spirit Tracks." No CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDVwAAwgQAAA + + + ToolTip + + ToolTip + + When set, SoftRasterizer will produce smoother color transitions than a standard DS. No CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBgAAAwsQAAA + + + ToolTip + + ToolTip + + When set, SoftRasterizer will emulate the DS toon edge marking. Very low CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBgAAAwpwAAA + + + ToolTip + + ToolTip + + When set, SoftRasterizer will render fog effects. This may affect the atmospheric look of 3D scenes. Very low CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBgAAAwmgAAA + + + 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). May slightly reduce CPU usage. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBgAAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBkAAAwowAAA + + + 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 new DS display views. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDTwAAw7MAAA + + 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+AAABCFAAAw7GAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABD8AAAA + + + ToolTip + + ToolTip + + Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwu4AAA + + 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+AAABDLQAAwnAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{797, 414}, {166, 143}} + 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+AAABBcAAAwmQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUKAAABDjYAAA + + + ToolTip + + ToolTip + + Fixes some graphical bugs involving lines, but causes some other bugs. Not many games use lines. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBgAAAwpoAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1081, 1073}, {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 + {{1055, 1057}, {220, 43}} + 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 + {{912, 394}, {286, 522}} + com.apple.InterfaceBuilder.CocoaPlugin + {{912, 394}, {286, 522}} + + 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 + {{343, 299}, {260, 328}} + 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 + {{126, 670}, {305, 315}} + com.apple.InterfaceBuilder.CocoaPlugin + {{126, 670}, {305, 315}} + + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1044, 759}, {209, 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 + + P4AAAL+AAABCmAAAw9QAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{63, 775}, {320, 290}} + 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Searches the DS memory for all addresses that currently carry the search value. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Searches the DS 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 + {{1061, 723}, {261, 113}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{831, 704}, {205, 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 + + AUGIAABC6gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + {{768, 739}, {500, 416}} + 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 + + AUGIAABBgAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + {{756, 530}, {64, 6}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{756, 510}, {64, 6}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + New display views will show only the main DS screen by default. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{343, 269}, {550, 450}} + com.apple.InterfaceBuilder.CocoaPlugin + {{343, 269}, {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 + {{622, 653}, {203, 183}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{865, 762}, {253, 373}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{934, 753}, {224, 83}} + 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 + + ToolTip + + ToolTip + + Enable to use vertical sync on the video output. This setting eliminates screen tearing, but may also reduce the video frame rate. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAxC9AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Enable to use vertical sync on the video output by default. This setting eliminates screen tearing, but may also reduce the video frame rate. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDhYAAw8QAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1081, 1033}, {123, 43}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1081, 1013}, {178, 43}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + If the display orientation is vertical, the main screen will be arranged above the touch screen by default. If the display layout is horizontal, the main screen will be arranged left of the touch screen by default. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + If the display orientation is vertical, the touch screen will be arranged above the main screen by default. If the display layout is horizontal, the touch screen will be arranged left of the main screen by default. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Arranges the DS screens where one screen is to the left of the other screen by default. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Arranges the DS screens where one screen is above the other screen by default. + + + 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 + + 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 + {{711, 700}, {400, 100}} + com.apple.InterfaceBuilder.CocoaPlugin + {{711, 700}, {400, 100}} + + com.apple.InterfaceBuilder.CocoaPlugin + {{603, 800}, {616, 0}} + com.apple.InterfaceBuilder.CocoaPlugin + {{42, 506}, {580, 592}} + com.apple.InterfaceBuilder.CocoaPlugin + {{42, 506}, {580, 592}} + + + + {580, 592} + {580, 592} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{640, 508}, {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 + {{692, 206}, {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 + {{331, 164}, {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 + + AUGIAABDNwAAA + + + ToolTip + + ToolTip + + Smooths the edges of 3D objects using multisample antialiasing (MSAA). No CPU usage. However, it requires additional VRAM from your GPU. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUPAgABCKAAAA + + + ToolTip + + ToolTip + + Smooths the edges of 3D objects using multisample antialiasing (MSAA) by default. No CPU usage. However, it requires additional VRAM from your GPU. + + + 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 + + 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 + {{131, 345}, {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 + {{709, 350}, {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 + {{784, 552}, {350, 263}} + com.apple.InterfaceBuilder.CocoaPlugin + {{784, 552}, {350, 263}} + + com.apple.InterfaceBuilder.CocoaPlugin + {{885, 594}, {350, 125}} + com.apple.InterfaceBuilder.CocoaPlugin + {{885, 594}, {350, 125}} + + com.apple.InterfaceBuilder.CocoaPlugin + {{310, 589}, {620, 267}} + com.apple.InterfaceBuilder.CocoaPlugin + {{310, 589}, {620, 267}} + + com.apple.InterfaceBuilder.CocoaPlugin + {{789, 354}, {516, 283}} + 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 + + Predefined noise samples that simulate sounds like speaking into the microphone. (Some games, such as "The Legend of Zelda: Spirit Tracks," work especially well with this.) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Randomly generated white noise that simulates sounds like blowing into the microphone. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Generated pure sine wave tone. Can be adjusted for frequency. + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Predefined samples loaded 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 + {{900, 757}, {350, 125}} + 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 + + AUGIAABCYAAAA + + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABD/wAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDcAAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBiAAAw0IAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDzwAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDEAAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBiAAAw3UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw4KAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{21, 940}, {467, 160}} + 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 + {{0, 702}, {620, 442}} + com.apple.InterfaceBuilder.CocoaPlugin + {{0, 702}, {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 + {{827, 727}, {133, 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 + {{560, 837}, {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 + {{147, 847}, {452, 115}} + 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 + {{1081, 903}, {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 DS 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 DS display views. (A value of 100% will create a gap between the screens that has the same relative distance as a hardware DS.) + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{585, 535}, {441, 133}} + com.apple.InterfaceBuilder.CocoaPlugin + {{585, 535}, {441, 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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1081, 933}, {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 DS. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{246, 388}, {640, 303}} + com.apple.InterfaceBuilder.CocoaPlugin + {{246, 388}, {640, 303}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwzYAAA + + 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 + + P4AAAL+AAADCtgAAwmgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Choose a directory where the R4 device stores its data. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABD+AAAwhgAAA + + 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 + + P4AAAL+AAABBYAAAwngAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Resets the emulation. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCRAAAwogAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwvQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUHwAABC6AAAA + + {{1081, 1013}, {70, 103}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBYAAAwlgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{343, 530}, {194, 241}} + com.apple.InterfaceBuilder.CocoaPlugin + {{343, 530}, {194, 241}} + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + {{1236, 149}, {204, 713}} + com.apple.InterfaceBuilder.CocoaPlugin + {{1236, 149}, {204, 713}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGQAABBgAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCSAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{728, 569}, {223, 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 + + AUOPgABDo4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGgAABDzQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABClgAAw+UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB6AAAw+CAAA + + 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 + {{909, 672}, {322, 463}} + com.apple.InterfaceBuilder.CocoaPlugin + {{997, 610}, {173, 339}} + com.apple.InterfaceBuilder.CocoaPlugin + {{997, 610}, {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 + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUNnAABBIAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUOKAABBIAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1385, 603}, {132, 363}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + P4AAAL+AAABBqAAAwygAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwgQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + P4AAAL+AAABBgAAAwpwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{509, 91}, {640, 448}} + com.apple.InterfaceBuilder.CocoaPlugin + {{509, 91}, {640, 448}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAw9UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUNXAABCzAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AUBAAABAgAAAA + + + ToolTip + + ToolTip + + Applies the selected SLOT-2 device's settings. + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABEBIAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBcAAAwlgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABBgAAAA + + {{895, 623}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwgwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{876, 169}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwvAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{882, 323}, {366, 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 + + P4AAAL+AAABBiAAAww8AAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{552, 661}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{882, 704}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{895, 262}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw5UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAw4iAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDjwAAw3cAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUONAABDPwAAA + + {{1090, 687}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{911, 632}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwycAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{1193, 722}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAwxYAAA + + {{1184, 327}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{910, 193}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUMRAABCwAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUJwAABClgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwsgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDhYAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAw3YAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBiAAAw4MAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{917, 616}, {400, 320}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwy4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AcIwAABDLAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCsgAAw4YAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDjYAAwz8AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUFAAABC1gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCsgAAw5UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwsYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDOwAAwsYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGgAABCzAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{672, 478}, {350, 240}} + com.apple.InterfaceBuilder.CocoaPlugin + {{672, 478}, {350, 240}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwzsAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDFSEAwfgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + {{624, 234}, {330, 811}} + com.apple.InterfaceBuilder.CocoaPlugin + {{624, 234}, {330, 811}} + + + + {330, 811} + {330, 88} + com.apple.InterfaceBuilder.CocoaPlugin + + AUMuAABBMAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABCvgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDcAAAwqIAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDEAAAwqIAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUEQAABEQ8AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwqwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUJMAABCwAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC+gAAwywAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC+AAAwigAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwqwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw18AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwsYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwsYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCngAAw1AAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCpAAAwzcAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDrgAAwx0AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHgAAww8AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqgAAw00AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw0gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDg4AAwqYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABDIQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw28AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw0gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADCSAAAwq4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCZAAAwiwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUKQAABCwAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCnAAAxFUAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCnAAAxFCAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCmgAAxEwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBQAAAwpgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC1gAAw70AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwzQAAA + + 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+AAABBcAAAwx4AAA + + {{1036, 504}, {254, 262}} + com.apple.InterfaceBuilder.CocoaPlugin + {{1036, 504}, {254, 262}} + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Execute + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwfAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Frame Advance + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB+AAAwqgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Reset + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDYgAAw6YAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Frame Jump + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC+AAAwfAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwwgAAA + + + ToolTip + + ToolTip + + Pause + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwqgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwuQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDQgAAw5KAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwowAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDQgAAw4iAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB4AAAwmwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDXwAAwmwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABChgAAwmwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC1AAAwmwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDEQAAwmwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDOQAAwmwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwrAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwrgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDFgAAwrAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDKQAAwqYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBcAAAwowAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AUFgAABDRAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AUFgAABCsAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCdAAAww8AAA + + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBiAAAwgAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCbAAAwYAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{820, 748}, {300, 108}} + com.apple.InterfaceBuilder.CocoaPlugin + {{820, 748}, {300, 108}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw3gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwdAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDDwAAwr4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwr4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwzQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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 + + P4AAAL+AAABBqAAAwpAAAA + + 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 + + P4AAAL+AAABBoAAAwuLSAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Sets the default output filter for new DS 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+AAABDJwAAw6CAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCbAAAw70AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{640, 378}, {228, 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 + + AUDAAABChAAAA + + + 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+AAABBgAAAw1EAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC1gAAw5KAAA + + 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+AAABDKAAAw68AAA + + 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 + + P4AAAL+AAABC1gAAw1cAAA + + + 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 + {{1385, 983}, {134, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1385, 863}, {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+AAABBiAAAxDYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABEIwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AUGIAABD9QAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwx4AAA + + + 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+AAABBgAAAwjQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAw1UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwWAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDFgAAwxcAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{1006, 400}, {137, 122}} + 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+AAABDSwAAwwgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwuQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwrgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwowAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwkAAAA + + {{848, 607}, {290, 119}} + com.apple.InterfaceBuilder.CocoaPlugin + {{848, 607}, {290, 119}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDPgAAwpgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDPgAAwsoAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDEwAAwpIAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDEwAAwsQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwpYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwsgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDQAAAwYgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABC1gAAwwUAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCrgAAwhwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC1gAAwqoAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC1gAAwhgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwrgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwrgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwowAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwqwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwowAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBcAAAwdAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSwAAwdAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUOPgABC9gAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AUOPgABDUQAAA + + 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+AAABBcAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{951, 299}, {160, 293}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABDSwAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUMhAABDBAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBQAAAwpAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCvgAAwgwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + {{604, 173}, {700, 405}} + com.apple.InterfaceBuilder.CocoaPlugin + {{604, 173}, {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 + + P4AAAL+AAABBiAAAw6qAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw7+AAA + + com.apple.InterfaceBuilder.CocoaPlugin + 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/gAAAw5iAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + 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+AAABBMAAAw8mAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBuAAAw7OAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AcAAAABEGYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBuAAAw6IAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBAAAAxBiAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABDk4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AcBAAABDkgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBuAAAwxQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBAAAAw4+AAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABDCQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AcBAAABDBwAAA + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCKAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBuAAAwqwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBAAAAwwIAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCIAAAA + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAADAAAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBuAAAwhQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBAAAAwhQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAC/gAAAxDvAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABEMMAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBuAAAwq4AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBAAAAxC/AAA + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABEHMAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwoYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDTQAAwoYAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBQAAAwoQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSAAAwoQAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 9897 + + + + 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 + cdsCoreController + cdsSoundController + cheatListWindow + cheatWindowController + emuControlController + inputDeviceListController + inputManager + inputPrefsView + mLoadStateSlot + mSaveStateSlot + migrationDelegate + prefGeneralView + prefWindow + prefWindowController + romInfoPanel + romInfoPanelController + slot2Window + troubleshootingWindow + + + YES + NSObjectController + NSObjectController + NSObjectController + NSWindow + NSObjectController + NSObjectController + NSArrayController + InputManager + InputPrefsView + NSMenu + NSMenu + FileMigrationDelegate + NSView + NSWindow + NSObjectController + RomInfoPanel + NSObjectController + NSWindow + NSWindow + + + + YES + + YES + aboutWindowController + cdsCoreController + cdsSoundController + cheatListWindow + cheatWindowController + emuControlController + inputDeviceListController + inputManager + inputPrefsView + mLoadStateSlot + mSaveStateSlot + migrationDelegate + prefGeneralView + prefWindow + prefWindowController + romInfoPanel + romInfoPanelController + slot2Window + troubleshootingWindow + + + YES + + aboutWindowController + NSObjectController + + + cdsCoreController + NSObjectController + + + cdsSoundController + NSObjectController + + + cheatListWindow + NSWindow + + + cheatWindowController + NSObjectController + + + emuControlController + NSObjectController + + + inputDeviceListController + NSArrayController + + + inputManager + InputManager + + + inputPrefsView + InputPrefsView + + + mLoadStateSlot + NSMenu + + + mSaveStateSlot + NSMenu + + + migrationDelegate + FileMigrationDelegate + + + prefGeneralView + NSView + + + prefWindow + NSWindow + + + prefWindowController + NSObjectController + + + romInfoPanel + RomInfoPanel + + + romInfoPanelController + NSObjectController + + + slot2Window + NSWindow + + + troubleshootingWindow + NSWindow + + + + + 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 + + + + DisplayPreviewView + NSView + + IBProjectSource + userinterface/preferencesWindowDelegate.h + + + + DisplayView + NSView + + IBProjectSource + userinterface/DisplayWindowController.h + + + + DisplayWindowController + NSWindowController + + YES + + YES + changeCoreSpeed: + changeDisplayGap: + changeDisplayMode: + changeDisplayOrder: + changeDisplayOrientation: + changeRotation: + changeRotationRelative: + changeScale: + changeVideoOutputFilter: + changeVideoPixelScaler: + changeVolume: + copy: + openRom: + reset: + saveScreenshotAs: + toggleExecutePause: + toggleFullScreenDisplay: + toggleKeepMinDisplaySizeAtNormal: + toggleStatusBar: + 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 + + + + YES + + YES + changeCoreSpeed: + changeDisplayGap: + changeDisplayMode: + changeDisplayOrder: + changeDisplayOrientation: + changeRotation: + changeRotationRelative: + changeScale: + changeVideoOutputFilter: + changeVideoPixelScaler: + changeVolume: + copy: + openRom: + reset: + saveScreenshotAs: + toggleExecutePause: + toggleFullScreenDisplay: + toggleKeepMinDisplaySizeAtNormal: + toggleStatusBar: + toggleVideoSourceDeposterize: + writeDefaultsDisplayGap: + writeDefaultsDisplayRotation: + writeDefaultsDisplayVideoSettings: + writeDefaultsHUDSettings: + + + YES + + changeCoreSpeed: + id + + + changeDisplayGap: + id + + + changeDisplayMode: + id + + + changeDisplayOrder: + id + + + changeDisplayOrientation: + id + + + changeRotation: + id + + + changeRotationRelative: + id + + + changeScale: + id + + + changeVideoOutputFilter: + id + + + changeVideoPixelScaler: + id + + + changeVolume: + id + + + copy: + id + + + openRom: + id + + + reset: + id + + + saveScreenshotAs: + id + + + toggleExecutePause: + id + + + toggleFullScreenDisplay: + id + + + toggleKeepMinDisplaySizeAtNormal: + id + + + toggleStatusBar: + id + + + toggleVideoSourceDeposterize: + id + + + writeDefaultsDisplayGap: + id + + + writeDefaultsDisplayRotation: + id + + + writeDefaultsDisplayVideoSettings: + id + + + writeDefaultsHUDSettings: + id + + + + + YES + + YES + saveScreenshotPanelAccessoryView + view + + + YES + NSView + DisplayView + + + + YES + + YES + saveScreenshotPanelAccessoryView + view + + + YES + + saveScreenshotPanelAccessoryView + NSView + + + view + DisplayView + + + + + + + EmuControllerDelegate + NSObject + + YES + + YES + autoholdSet: + changeAudioEngine: + changeCoreEmuFlags: + changeCoreSpeed: + changeFirmwareSettings: + changeRomSaveType: + changeSpuAdvancedLogic: + changeSpuInterpolationMode: + changeSpuSyncMethod: + changeSpuSyncMode: + changeVolume: + chooseSlot1R4Directory: + closeRom: + closeSheet: + coreExecute: + corePause: + exportRomSave: + frameAdvance: + frameJump: + importRomSave: + loadEmuSaveStateSlot: + loadRecentRom: + newDisplayWindow: + openEmuSaveState: + openReplay: + openRom: + recordReplay: + reset: + revealGameDataFolderInFinder: + revealRomInFinder: + revertEmuSaveState: + saveEmuSaveState: + saveEmuSaveStateAs: + saveEmuSaveStateSlot: + slot1Eject: + stopReplay: + toggleAllDisplays: + toggleAutoFrameSkip: + toggleCheats: + toggleExecutePause: + toggleGDBStubActivate: + toggleGPUState: + toggleSpeedLimiter: + writeDefaults3DRenderingSettings: + writeDefaultsEmulationSettings: + writeDefaultsSlot1Settings: + writeDefaultsSoundSettings: + + + 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 + + + + YES + + YES + autoholdSet: + changeAudioEngine: + changeCoreEmuFlags: + changeCoreSpeed: + changeFirmwareSettings: + changeRomSaveType: + changeSpuAdvancedLogic: + changeSpuInterpolationMode: + changeSpuSyncMethod: + changeSpuSyncMode: + changeVolume: + chooseSlot1R4Directory: + closeRom: + closeSheet: + coreExecute: + corePause: + exportRomSave: + frameAdvance: + frameJump: + importRomSave: + loadEmuSaveStateSlot: + loadRecentRom: + newDisplayWindow: + openEmuSaveState: + openReplay: + openRom: + recordReplay: + reset: + revealGameDataFolderInFinder: + revealRomInFinder: + revertEmuSaveState: + saveEmuSaveState: + saveEmuSaveStateAs: + saveEmuSaveStateSlot: + slot1Eject: + stopReplay: + toggleAllDisplays: + toggleAutoFrameSkip: + toggleCheats: + toggleExecutePause: + toggleGDBStubActivate: + toggleGPUState: + toggleSpeedLimiter: + writeDefaults3DRenderingSettings: + writeDefaultsEmulationSettings: + writeDefaultsSlot1Settings: + writeDefaultsSoundSettings: + + + YES + + autoholdSet: + id + + + changeAudioEngine: + id + + + changeCoreEmuFlags: + id + + + changeCoreSpeed: + id + + + changeFirmwareSettings: + 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 + + + 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 + + + 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 + + + + + YES + + YES + cdsCoreController + cdsSoundController + cheatDatabaseController + cheatListController + cheatWindowController + cheatWindowDelegate + executionControlWindow + exportRomSavePanelAccessoryView + firmwarePanelController + inputManager + romInfoPanelController + saveFileMigrationSheet + saveStatePrecloseSheet + slot1ManagerWindow + slot2WindowController + + + YES + NSObjectController + NSObjectController + NSArrayController + NSArrayController + NSObjectController + CheatWindowDelegate + NSWindow + NSView + NSObjectController + InputManager + NSObjectController + NSWindow + NSWindow + NSWindow + NSObjectController + + + + YES + + YES + cdsCoreController + cdsSoundController + cheatDatabaseController + cheatListController + cheatWindowController + cheatWindowDelegate + executionControlWindow + exportRomSavePanelAccessoryView + firmwarePanelController + inputManager + romInfoPanelController + saveFileMigrationSheet + saveStatePrecloseSheet + slot1ManagerWindow + slot2WindowController + + + YES + + cdsCoreController + NSObjectController + + + cdsSoundController + NSObjectController + + + cheatDatabaseController + NSArrayController + + + cheatListController + NSArrayController + + + cheatWindowController + NSObjectController + + + cheatWindowDelegate + CheatWindowDelegate + + + executionControlWindow + NSWindow + + + exportRomSavePanelAccessoryView + NSView + + + firmwarePanelController + NSObjectController + + + inputManager + InputManager + + + romInfoPanelController + NSObjectController + + + saveFileMigrationSheet + NSWindow + + + saveStatePrecloseSheet + NSWindow + + + 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: + showSettingsSheet: + + + YES + 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: + showSettingsSheet: + + + 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 + + + showSettingsSheet: + id + + + + + YES + + YES + inputManager + inputPrefOutlineView + inputProfileController + inputProfileMenu + inputProfileNextButton + inputProfilePreviousButton + inputProfileRenameSheet + inputProfileSheet + inputSettingsController + inputSettingsGPUState + inputSettingsLoadStateSlot + inputSettingsMicrophone + inputSettingsNDSInput + inputSettingsPaddleController + inputSettingsSaveStateSlot + inputSettingsSetSpeedLimit + inputSettingsTouch + prefWindow + + + YES + InputManager + NSOutlineView + InputProfileController + NSPopUpButton + NSButton + NSButton + NSWindow + NSWindow + NSObjectController + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + NSWindow + + + + YES + + YES + inputManager + inputPrefOutlineView + inputProfileController + inputProfileMenu + inputProfileNextButton + inputProfilePreviousButton + inputProfileRenameSheet + inputProfileSheet + inputSettingsController + inputSettingsGPUState + inputSettingsLoadStateSlot + inputSettingsMicrophone + inputSettingsNDSInput + inputSettingsPaddleController + inputSettingsSaveStateSlot + inputSettingsSetSpeedLimit + inputSettingsTouch + prefWindow + + + 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 + + + + + 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 + + + + PreferencesWindowDelegate + NSObject + + YES + + YES + changePrefView: + chooseARM7BiosImage: + chooseARM9BiosImage: + chooseAdvansceneDatabase: + chooseCheatDatabase: + chooseFirmwareImage: + chooseRomForAutoload: + closeFirmwareConfigSheet: + configureInternalFirmware: + selectDisplayRotation: + selectOutputFilter: + selectPixelScaler: + selectSPUSyncMethod: + selectSPUSyncMode: + updateFiltersPreferGPU: + updateSourceDeposterize: + updateVolumeIcon: + + + YES + 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: + selectDisplayRotation: + selectOutputFilter: + selectPixelScaler: + selectSPUSyncMethod: + selectSPUSyncMode: + updateFiltersPreferGPU: + updateSourceDeposterize: + updateVolumeIcon: + + + YES + + changePrefView: + id + + + chooseARM7BiosImage: + id + + + chooseARM9BiosImage: + id + + + chooseAdvansceneDatabase: + id + + + chooseCheatDatabase: + id + + + chooseFirmwareImage: + id + + + chooseRomForAutoload: + id + + + closeFirmwareConfigSheet: + id + + + configureInternalFirmware: + id + + + selectDisplayRotation: + id + + + selectOutputFilter: + id + + + selectPixelScaler: + id + + + selectSPUSyncMethod: + id + + + selectSPUSyncMode: + id + + + updateFiltersPreferGPU: + id + + + updateSourceDeposterize: + id + + + updateVolumeIcon: + id + + + + + YES + + YES + cdsCoreController + cheatDatabaseController + cheatWindowController + displayRotationField + displayRotationMenu + displayRotationMenuCustomItem + emuController + firmwareConfigSheet + prefWindowController + previewView + spuSyncMethodMenu + toolbar + viewDisplay + viewEmulation + viewGeneral + viewInput + viewSound + window + + + YES + NSObjectController + NSArrayController + NSObjectController + NSTextField + NSPopUpButton + NSMenuItem + NSObjectController + NSWindow + NSObjectController + DisplayPreviewView + NSPopUpButton + NSToolbar + NSView + NSView + NSView + InputPrefsView + NSView + NSWindow + + + + YES + + YES + cdsCoreController + cheatDatabaseController + cheatWindowController + displayRotationField + displayRotationMenu + displayRotationMenuCustomItem + emuController + firmwareConfigSheet + prefWindowController + previewView + spuSyncMethodMenu + toolbar + viewDisplay + viewEmulation + viewGeneral + viewInput + viewSound + window + + + YES + + cdsCoreController + NSObjectController + + + cheatDatabaseController + NSArrayController + + + cheatWindowController + NSObjectController + + + displayRotationField + NSTextField + + + displayRotationMenu + NSPopUpButton + + + displayRotationMenuCustomItem + NSMenuItem + + + emuController + NSObjectController + + + firmwareConfigSheet + NSWindow + + + prefWindowController + NSObjectController + + + previewView + DisplayPreviewView + + + spuSyncMethodMenu + NSPopUpButton + + + toolbar + NSToolbar + + + 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 + + + + + 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 + + + + 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 + + + + 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 + + + + 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 + + + + 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_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} + {420, 420} + {420, 420} + {420, 420} + {420, 420} + {20, 20} + {421, 339} + {360, 136} + {698, 479} + {111.60000000000001, 85.600000000000009} + {515, 457} + {14, 14} + {8, 8} + {512, 512} + {11, 11} + {10, 3} + {32, 32} + {16, 15} + {8, 8} + {15, 15} + + + diff --git a/desmume/src/cocoa/userinterface/RomInfoPanel.h b/desmume/src/cocoa/userinterface/RomInfoPanel.h new file mode 100644 index 000000000..f4e6b82cc --- /dev/null +++ b/desmume/src/cocoa/userinterface/RomInfoPanel.h @@ -0,0 +1,72 @@ +/* + Copyright (C) 2015 DeSmuME Team + + This file is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 2 of the License, or + (at your option) any later version. + + This file is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the this software. If not, see . +*/ + +#import + +#define ROMINFO_PANEL_SECTION_HEADER_HEIGHT 22 + +@interface RomInfoPanelSectionView : NSView +{ + NSButton *disclosureButton; + NSTextField *sectionLabel; + + CGFloat expandedHeight; + CGFloat collapsedHeight; + CGFloat contentHeight; +} + +@property (readonly) IBOutlet NSButton *disclosureButton; +@property (readonly) IBOutlet NSTextField *sectionLabel; +@property (assign) BOOL isExpanded; +@property (readonly) CGFloat expandedHeight; +@property (readonly) CGFloat collapsedHeight; +@property (readonly) CGFloat contentHeight; + +- (NSString *) stringFromSectionLabel; + +@end + +@interface RomInfoContentView : NSView +@end + +@interface RomInfoPanel : NSPanel +{ + NSSize _panelMaxSize; + NSSize _mainViewMaxSize; + + RomInfoPanelSectionView *generalSectionView; + RomInfoPanelSectionView *titlesSectionView; + RomInfoPanelSectionView *armBinariesSectionView; + RomInfoPanelSectionView *fileSystemSectionView; + RomInfoPanelSectionView *miscSectionView; + + NSArray *_sectionViewList; +} + +@property (readonly) IBOutlet RomInfoPanelSectionView *generalSectionView; +@property (readonly) IBOutlet RomInfoPanelSectionView *titlesSectionView; +@property (readonly) IBOutlet RomInfoPanelSectionView *armBinariesSectionView; +@property (readonly) IBOutlet RomInfoPanelSectionView *fileSystemSectionView; +@property (readonly) IBOutlet RomInfoPanelSectionView *miscSectionView; + +- (IBAction) toggleViewState:(id)sender; + +- (void) autoLayout; +- (void) setupUserDefaults; +- (void) writeDefaults; + +@end diff --git a/desmume/src/cocoa/userinterface/RomInfoPanel.mm b/desmume/src/cocoa/userinterface/RomInfoPanel.mm new file mode 100644 index 000000000..113c28f25 --- /dev/null +++ b/desmume/src/cocoa/userinterface/RomInfoPanel.mm @@ -0,0 +1,229 @@ +/* + Copyright (C) 2015 DeSmuME Team + + This file is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 2 of the License, or + (at your option) any later version. + + This file is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the this software. If not, see . +*/ + +#import "RomInfoPanel.h" +#import "cocoa_util.h" + +@implementation RomInfoPanelSectionView + +@synthesize disclosureButton; +@synthesize sectionLabel; +@dynamic isExpanded; +@synthesize expandedHeight; +@synthesize collapsedHeight; +@synthesize contentHeight; + +- (id)initWithFrame:(NSRect)frame +{ + self = [super initWithFrame:frame]; + if (self == nil) + { + return self; + } + + expandedHeight = frame.size.height; + collapsedHeight = ROMINFO_PANEL_SECTION_HEADER_HEIGHT; + contentHeight = expandedHeight - collapsedHeight; + + return self; +} + +- (void) setIsExpanded:(BOOL)theState +{ + [disclosureButton setState:(theState) ? NSOnState : NSOffState]; + + NSRect newFrame = [self frame]; + newFrame.size.height = (theState) ? expandedHeight : collapsedHeight; + [self setFrame:newFrame]; +} + +- (BOOL) isExpanded +{ + return ([disclosureButton state] == NSOnState); +} + +- (NSString *) stringFromSectionLabel +{ + if (sectionLabel != nil) + { + return [sectionLabel stringValue]; + } + + return @""; +} + +@end + +@implementation RomInfoContentView + +// Override this method here to prevent all forms of horizontal scrolling. +// This even includes scrolling by means of gestures. +- (NSRect)adjustScroll:(NSRect)proposedVisibleRect +{ + proposedVisibleRect.origin.x = 0.0f; + return proposedVisibleRect; +} + +@end + +@implementation RomInfoPanel + +@synthesize generalSectionView; +@synthesize titlesSectionView; +@synthesize armBinariesSectionView; +@synthesize fileSystemSectionView; +@synthesize miscSectionView; + +- (id)init +{ + self = [super init]; + if(self == nil) + { + return nil; + } + + _sectionViewList = nil; + + _panelMaxSize.width = 1.0f; + _panelMaxSize.height = 1.0f; + _mainViewMaxSize.width = 1.0f; + _mainViewMaxSize.height = 1.0f; + + return self; +} + +- (void)dealloc +{ + [_sectionViewList release]; + + [super dealloc]; +} + +- (IBAction) toggleViewState:(id)sender +{ + NSButton *disclosureTriangle = (NSButton *)sender; + RomInfoPanelSectionView *sv = (RomInfoPanelSectionView *)[disclosureTriangle superview]; + const BOOL isSectionExpanded = [CocoaDSUtil getIBActionSenderButtonStateBool:disclosureTriangle]; + [sv setIsExpanded:isSectionExpanded]; + + [self autoLayout]; +} + +// Since we want to maintain backwards compatibility with OS X v10.5, we need to roll our +// own custom autolayout method. +- (void) autoLayout +{ + // Calculate the heights of the superviews. + NSSize newMainViewSize = _mainViewMaxSize; + NSSize newPanelMaxSize = _panelMaxSize; + for (RomInfoPanelSectionView *sv in _sectionViewList) + { + const BOOL isExpanded = [sv isExpanded]; + const CGFloat svContentHeight = [sv contentHeight]; + newMainViewSize.height -= ((isExpanded) ? 0.0f : svContentHeight); + newPanelMaxSize.height -= ((isExpanded) ? 0.0f : svContentHeight); + } + + // Set the superview heights. + NSView *mainView = [[_sectionViewList objectAtIndex:0] superview]; + [mainView setFrameSize:newMainViewSize]; + [self setContentMaxSize:newPanelMaxSize]; + + // Place all of the views in their final locations by enumerating through each section + // view and stacking them on top of one another. This requires that the enumeration is + // done in a specific order, so we'll enumerate manually in this case. + CGFloat originY = 0.0f; // Keeps track of the current origin location as we enumerate through each section view. + + for (size_t j = 0; j < [_sectionViewList count]; j++) + { + RomInfoPanelSectionView *sv = (RomInfoPanelSectionView *)[_sectionViewList objectAtIndex:j]; + NSPoint svOrigin = [sv frame].origin; + svOrigin.y = originY; + + [sv setFrameOrigin:svOrigin]; + originY += [sv frame].size.height; + } + + // If the panel is currently larger than the new max size, automatically reduce its size + // to match the new max size. + CGFloat heightDiff = [[self contentView] frame].size.height - [self contentMaxSize].height; + if (heightDiff > 0.0f) + { + NSRect newFrameRect = [self frame]; + newFrameRect.size.height -= heightDiff; + newFrameRect.origin.y += heightDiff; + [self setFrame:newFrameRect display:YES animate:NO]; + } +} + +- (void) setupUserDefaults +{ + // Add each section view to this list as they would appear in the panel + // from bottom to top order. + _sectionViewList = [[NSArray alloc] initWithObjects: + miscSectionView, + fileSystemSectionView, + armBinariesSectionView, + titlesSectionView, + generalSectionView, + nil]; + + NSView *mainView = [[_sectionViewList objectAtIndex:0] superview]; + _panelMaxSize = [self contentMaxSize]; + _mainViewMaxSize = [mainView frame].size; + + // Toggle each view state per user preferences. + NSDictionary *viewStatesDict = [[NSUserDefaults standardUserDefaults] objectForKey:@"RomInfoPanel_SectionViewState"]; + if (viewStatesDict != nil) + { + for (RomInfoPanelSectionView *sv in _sectionViewList) + { + NSNumber *theStateObj = (NSNumber *)[viewStatesDict objectForKey:[sv stringFromSectionLabel]]; + [sv setIsExpanded:(theStateObj != nil) ? [theStateObj boolValue] : YES]; + } + } + else + { + for (RomInfoPanelSectionView *sv in _sectionViewList) + { + [sv setIsExpanded:YES]; + } + } + + // Perform an autolayout to reflect possible changes to the panel states. + [self autoLayout]; +} + +- (void) writeDefaults +{ + NSMutableDictionary *viewStatesDict = [NSMutableDictionary dictionaryWithCapacity:[_sectionViewList count]]; + for (RomInfoPanelSectionView *sv in _sectionViewList) + { + [viewStatesDict setObject:[NSNumber numberWithBool:[sv isExpanded]] forKey:[sv stringFromSectionLabel]]; + } + + [[NSUserDefaults standardUserDefaults] setObject:viewStatesDict forKey:@"RomInfoPanel_SectionViewState"]; +} + +#pragma mark NSPanel Methods + +- (BOOL)becomesKeyOnlyIfNeeded +{ + return YES; +} + +@end diff --git a/desmume/src/cocoa/userinterface/appDelegate.h b/desmume/src/cocoa/userinterface/appDelegate.h index 66c24e35d..70f298030 100644 --- a/desmume/src/cocoa/userinterface/appDelegate.h +++ b/desmume/src/cocoa/userinterface/appDelegate.h @@ -21,6 +21,7 @@ @class InputPrefsView; @class InputManager; @class FileMigrationDelegate; +@class RomInfoPanel; #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5 @@ -41,6 +42,7 @@ NSArrayController *inputDeviceListController; FileMigrationDelegate *migrationDelegate; InputManager *inputManager; + RomInfoPanel *romInfoPanel; NSWindow *prefWindow; NSWindow *troubleshootingWindow; @@ -52,12 +54,6 @@ NSMenu *mLoadStateSlot; NSMenu *mSaveStateSlot; - NSBox *boxGeneralInfo; - NSBox *boxTitles; - NSBox *boxARMBinaries; - NSBox *boxFileSystem; - NSBox *boxMisc; - BOOL isAppRunningOnIntel; BOOL isDeveloperPlusBuild; } @@ -82,12 +78,7 @@ @property (readonly) IBOutlet NSMenu *mLoadStateSlot; @property (readonly) IBOutlet NSMenu *mSaveStateSlot; @property (readonly) IBOutlet InputPrefsView *inputPrefsView; - -@property (readonly) IBOutlet NSBox *boxGeneralInfo; -@property (readonly) IBOutlet NSBox *boxTitles; -@property (readonly) IBOutlet NSBox *boxARMBinaries; -@property (readonly) IBOutlet NSBox *boxFileSystem; -@property (readonly) IBOutlet NSBox *boxMisc; +@property (readonly) IBOutlet RomInfoPanel *romInfoPanel; @property (assign) BOOL isAppRunningOnIntel; @property (assign) BOOL isDeveloperPlusBuild; @@ -100,7 +91,6 @@ - (void) setupSlotMenuItems; - (NSMenuItem *) addSlotMenuItem:(NSMenu *)menu slotNumber:(NSUInteger)slotNumber; - (void) setupUserDefaults; -- (void) setRomInfoPanelBoxTitleColors; - (void) restoreDisplayWindowStates; - (void) saveDisplayWindowStates; diff --git a/desmume/src/cocoa/userinterface/appDelegate.mm b/desmume/src/cocoa/userinterface/appDelegate.mm index 09ba320fa..1f84541a1 100644 --- a/desmume/src/cocoa/userinterface/appDelegate.mm +++ b/desmume/src/cocoa/userinterface/appDelegate.mm @@ -20,6 +20,7 @@ #import "DisplayWindowController.h" #import "EmuControllerDelegate.h" #import "FileMigrationDelegate.h" +#import "RomInfoPanel.h" #import "Slot2WindowDelegate.h" #import "preferencesWindowDelegate.h" #import "troubleshootingWindowDelegate.h" @@ -56,12 +57,7 @@ @synthesize cheatWindowController; @synthesize migrationDelegate; @synthesize inputManager; - -@synthesize boxGeneralInfo; -@synthesize boxTitles; -@synthesize boxARMBinaries; -@synthesize boxFileSystem; -@synthesize boxMisc; +@synthesize romInfoPanel; @synthesize isAppRunningOnIntel; @synthesize isDeveloperPlusBuild; @@ -172,10 +168,6 @@ [aboutWindowController setContent:aboutWindowProperties]; - // Change the title colors of the NSBox objects in the ROM Info panel. We change the - // colors manually here because you can't change them in Interface Builder. Boo!!! - [self setRomInfoPanelBoxTitleColors]; - // Set the preferences window to the general view by default. [[prefWindowDelegate toolbar] setSelectedItemIdentifier:@"General"]; [prefWindowDelegate changePrefView:self]; @@ -347,6 +339,7 @@ // Save some settings to user defaults before app termination [self saveDisplayWindowStates]; + [romInfoPanel writeDefaults]; [[NSUserDefaults standardUserDefaults] setDouble:[emuControl lastSetSpeedScalar] forKey:@"CoreControl_SpeedScalar"]; [[NSUserDefaults standardUserDefaults] setBool:[cdsCore isSpeedLimitEnabled] forKey:@"CoreControl_EnableSpeedLimit"]; [[NSUserDefaults standardUserDefaults] setBool:[cdsCore isFrameSkipEnabled] forKey:@"CoreControl_EnableAutoFrameSkip"]; @@ -577,6 +570,9 @@ [inputManager setMappingsWithMappings:userMappings]; [[inputManager hidManager] setDeviceListController:inputDeviceListController]; + // Set up the ROM Info panel. + [romInfoPanel setupUserDefaults]; + // Set up the preferences window. [prefWindowDelegate setupUserDefaults]; @@ -587,23 +583,6 @@ [emuControl setupUserDefaults]; } -- (void) setRomInfoPanelBoxTitleColors -{ - NSColor *boxTitleColor = [NSColor whiteColor]; - - [[boxGeneralInfo titleCell] setTextColor:boxTitleColor]; - [[boxTitles titleCell] setTextColor:boxTitleColor]; - [[boxARMBinaries titleCell] setTextColor:boxTitleColor]; - [[boxFileSystem titleCell] setTextColor:boxTitleColor]; - [[boxMisc titleCell] setTextColor:boxTitleColor]; - - [boxGeneralInfo setNeedsDisplay:YES]; - [boxTitles setNeedsDisplay:YES]; - [boxARMBinaries setNeedsDisplay:YES]; - [boxFileSystem setNeedsDisplay:YES]; - [boxMisc setNeedsDisplay:YES]; -} - - (void) restoreDisplayWindowStates { EmuControllerDelegate *emuControl = (EmuControllerDelegate *)[emuControlController content];