diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bbf313b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,32 @@
+# Object files
+*.o
+*.ko
+*.obj
+*.elf
+
+# Precompiled Headers
+*.gch
+*.pch
+
+# Libraries
+*.lib
+*.a
+*.la
+*.lo
+
+# Shared objects (inc. Windows DLLs)
+*.dll
+*.so
+*.so.*
+*.dylib
+
+# Executables
+*.exe
+*.out
+*.app
+*.i*86
+*.x86_64
+*.hex
+
+# Debug files
+*.dSYM/
diff --git a/3ds.cbp b/3ds.cbp
new file mode 100644
index 0000000..4dd2af5
--- /dev/null
+++ b/3ds.cbp
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..ab038b4
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,7 @@
+Copyright (C) 2015 Steveice10
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e158cd4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,253 @@
+.SUFFIXES:
+
+#---------------------------------------------------------------------------------
+# Environment Setup
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(DEVKITPRO)),)
+$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=devkitPRO")
+endif
+
+ifeq ($(strip $(DEVKITARM)),)
+$(error "Please set DEVKITARM in your environment. export DEVKITARM=devkitARM")
+endif
+
+include $(DEVKITARM)/3ds_rules
+
+# ip address of 3ds for spunch/3dsxlink target.
+IP3DS := 127.0.0.1
+
+#---------------------------------------------------------------------------------
+# Directory Setup
+#---------------------------------------------------------------------------------
+BUILD := build
+OUTPUT := output
+RESOURCES := resources
+DATA := data
+ROMFS := romfs
+SOURCES := source
+INCLUDES := $(SOURCES) include
+
+#---------------------------------------------------------------------------------
+# Resource Setup
+#---------------------------------------------------------------------------------
+APP_INFO := $(RESOURCES)/AppInfo
+BANNER_AUDIO := $(RESOURCES)/audio
+BANNER_IMAGE := $(RESOURCES)/banner
+ICON := $(RESOURCES)/icon.png
+RSF := $(TOPDIR)/$(RESOURCES)/template.rsf
+
+#---------------------------------------------------------------------------------
+# Build Setup
+#---------------------------------------------------------------------------------
+ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard
+
+COMMON_FLAGS := -g -Wall -Wno-strict-aliasing -O3 -mword-relocations -fomit-frame-pointer -ffast-math $(ARCH) $(INCLUDE) -DARM11 -D_3DS $(BUILD_FLAGS)
+CFLAGS := $(COMMON_FLAGS) -std=gnu99
+CXXFLAGS := $(COMMON_FLAGS) -std=gnu++11
+ifeq ($(ENABLE_EXCEPTIONS),)
+ CXXFLAGS += -fno-rtti -fno-exceptions
+endif
+
+ASFLAGS := -g $(ARCH)
+LDFLAGS = -specs=3dsx.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
+
+LIBS := -lctru -lm
+LIBDIRS := $(PORTLIBS) $(CTRULIB) ./lib
+
+#---------------------------------------------------------------------------------
+ifneq ($(BUILD),$(notdir $(CURDIR)))
+#---------------------------------------------------------------------------------
+
+#---------------------------------------------------------------------------------
+# Build Variable Setup
+#---------------------------------------------------------------------------------
+recurse = $(shell find $2 -type $1 -name '$3' 2> /dev/null)
+
+CFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.c)))
+CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.cpp)))
+SFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.s)))
+PICAFILES := $(foreach dir,$(SOURCES),$(notdir $(call recurse,f,$(dir),*.pica)))
+BINFILES := $(foreach dir,$(DATA),$(notdir $(call recurse,f,$(dir),*.*)))
+
+export OFILES := $(addsuffix .o,$(BINFILES)) $(PICAFILES:.pica=.shbin.o) $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
+export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) $(foreach dir,$(LIBDIRS),-I$(dir)/include) -I$(CURDIR)/$(BUILD)
+export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
+
+ifeq ($(strip $(CPPFILES)),)
+ export LD := $(CC)
+else
+ export LD := $(CXX)
+endif
+
+export DEPSDIR := $(CURDIR)/$(BUILD)
+export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir) $(call recurse,d,$(CURDIR)/$(dir),*)) $(foreach dir,$(DATA),$(CURDIR)/$(dir) $(call recurse,d,$(CURDIR)/$(dir),*))
+
+export TOPDIR := $(CURDIR)
+OUTPUT_DIR := $(TOPDIR)/$(OUTPUT)
+
+.PHONY: $(BUILD) clean all
+
+#---------------------------------------------------------------------------------
+# Initial Targets
+#---------------------------------------------------------------------------------
+all: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
+
+3dsx: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+cia: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+3ds: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+elf: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+citra: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+3dsxlink: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+spunch: $(BUILD) $(OUTPUT_DIR)
+ @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile $@
+
+$(BUILD):
+ @[ -d $@ ] || mkdir -p $@
+
+$(OUTPUT_DIR):
+ @[ -d $@ ] || mkdir -p $@
+
+clean:
+ @echo clean ...
+ @rm -fr $(BUILD) $(OUTPUT)
+
+#---------------------------------------------------------------------------------
+else
+#---------------------------------------------------------------------------------
+
+#---------------------------------------------------------------------------------
+# Build Information Setup
+#---------------------------------------------------------------------------------
+DEPENDS := $(OFILES:.o=.d)
+
+include $(TOPDIR)/$(APP_INFO)
+APP_TITLE := $(shell echo "$(APP_TITLE)" | cut -c1-128)
+APP_DESCRIPTION := $(shell echo "$(APP_DESCRIPTION)" | cut -c1-256)
+APP_AUTHOR := $(shell echo "$(APP_AUTHOR)" | cut -c1-128)
+APP_PRODUCT_CODE := $(shell echo $(APP_PRODUCT_CODE) | cut -c1-16)
+APP_UNIQUE_ID := $(shell echo $(APP_UNIQUE_ID) | cut -c1-7)
+ifneq ("$(wildcard $(TOPDIR)/$(BANNER_IMAGE).cgfx)","")
+ BANNER_IMAGE_FILE := $(TOPDIR)/$(BANNER_IMAGE).cgfx
+ BANNER_IMAGE_ARG := -ci $(BANNER_IMAGE_FILE)
+else
+ BANNER_IMAGE_FILE := $(TOPDIR)/$(BANNER_IMAGE).png
+ BANNER_IMAGE_ARG := -i $(BANNER_IMAGE_FILE)
+endif
+
+ifneq ("$(wildcard $(TOPDIR)/$(BANNER_AUDIO).cwav)","")
+ BANNER_AUDIO_FILE := $(TOPDIR)/$(BANNER_AUDIO).cwav
+ BANNER_AUDIO_ARG := -ca $(BANNER_AUDIO_FILE)
+else
+ BANNER_AUDIO_FILE := $(TOPDIR)/$(BANNER_AUDIO).wav
+ BANNER_AUDIO_ARG := -a $(BANNER_AUDIO_FILE)
+endif
+
+EMPTY :=
+SPACE := $(EMPTY) $(EMPTY)
+OUTPUT_NAME := $(subst $(SPACE),,$(APP_TITLE))
+OUTPUT_DIR := $(TOPDIR)/$(OUTPUT)
+OUTPUT_FILE := $(OUTPUT_DIR)/$(OUTPUT_NAME)
+
+APP_ICON := $(TOPDIR)/$(ICON)
+APP_ROMFS := $(TOPDIR)/$(ROMFS)
+
+COMMON_MAKEROM_PARAMS := -rsf $(RSF) -target t -exefslogo -elf $(OUTPUT_FILE).elf -icon icon.icn -banner banner.bnr -DAPP_TITLE="$(APP_TITLE)" -DAPP_PRODUCT_CODE="$(APP_PRODUCT_CODE)" -DAPP_UNIQUE_ID="$(APP_UNIQUE_ID)" -DAPP_ROMFS="$(APP_ROMFS)" -DAPP_SYSTEM_MODE="64MB" -DAPP_SYSTEM_MODE_EXT="Legacy"
+
+ifeq ($(OS),Windows_NT)
+ MAKEROM = makerom.exe
+ BANNERTOOL = bannertool.exe
+else
+ MAKEROM = makerom
+ BANNERTOOL = bannertool
+endif
+
+_3DSXFLAGS += --smdh=$(OUTPUT_FILE).smdh
+ifneq ("$(wildcard $(TOPDIR)/$(ROMFS))","")
+ _3DSXFLAGS += --romfs=$(TOPDIR)/$(ROMFS)
+endif
+
+#---------------------------------------------------------------------------------
+# Main Targets
+#---------------------------------------------------------------------------------
+.PHONY: all 3dsx cia elf 3ds citra spunch 3dsxlink
+all: $(OUTPUT_FILE).zip $(OUTPUT_FILE).3ds $(OUTPUT_FILE).cia
+
+banner.bnr: $(BANNER_IMAGE_FILE) $(BANNER_AUDIO_FILE)
+ @$(BANNERTOOL) makebanner $(BANNER_IMAGE_ARG) $(BANNER_AUDIO_ARG) -o banner.bnr > /dev/null
+
+icon.icn: $(TOPDIR)/$(ICON)
+ @$(BANNERTOOL) makesmdh -s "$(APP_TITLE)" -l "$(APP_TITLE)" -p "$(APP_AUTHOR)" -i $(TOPDIR)/$(ICON) -o icon.icn > /dev/null
+
+$(OUTPUT_FILE).elf: $(OFILES)
+
+$(OUTPUT_FILE).3dsx: $(OUTPUT_FILE).elf $(OUTPUT_FILE).smdh
+
+$(OUTPUT_FILE).3ds: $(OUTPUT_FILE).elf banner.bnr icon.icn
+ @$(MAKEROM) -f cci -o $(OUTPUT_FILE).3ds -DAPP_ENCRYPTED=true $(COMMON_MAKEROM_PARAMS)
+ @echo "built ... $(notdir $@)"
+
+$(OUTPUT_FILE).cia: $(OUTPUT_FILE).elf banner.bnr icon.icn
+ @$(MAKEROM) -f cia -o $(OUTPUT_FILE).cia -DAPP_ENCRYPTED=false $(COMMON_MAKEROM_PARAMS)
+ @echo "built ... $(notdir $@)"
+
+$(OUTPUT_FILE).zip: $(OUTPUT_FILE).smdh $(OUTPUT_FILE).3dsx
+ @cd $(OUTPUT_DIR); \
+ mkdir -p 3ds/$(OUTPUT_NAME); \
+ cp $(OUTPUT_FILE).3dsx 3ds/$(OUTPUT_NAME); \
+ cp $(OUTPUT_FILE).smdh 3ds/$(OUTPUT_NAME); \
+ zip -r $(OUTPUT_FILE).zip 3ds > /dev/null; \
+ rm -r 3ds
+ @echo "built ... $(notdir $@)"
+
+3dsx : $(OUTPUT_FILE).3dsx
+
+cia : $(OUTPUT_FILE).cia
+
+3ds : $(OUTPUT_FILE).3ds
+
+elf : $(OUTPUT_FILE).elf
+
+citra : $(OUTPUT_FILE).3dsx
+ citra $(OUTPUT_FILE).3dsx
+
+spunch : $(OUTPUT_FILE).cia
+ java -jar ../sockfile-2.0.jar $(IP3DS) $(OUTPUT_FILE).cia
+
+3dsxlink : $(OUTPUT_FILE).3dsx
+ 3dslink -a $(IP3DS) $(OUTPUT_FILE).3dsx
+
+#---------------------------------------------------------------------------------
+# Binary Data Rules
+#---------------------------------------------------------------------------------
+%.bin.o: %.bin
+ @echo $(notdir $<)
+ @$(bin2o)
+
+%.shbin.o: %.pica
+ @echo $(notdir $<)
+ $(eval CURBIN := $(patsubst %.pica,%.shbin,$(notdir $<)))
+ $(eval CURH := $(patsubst %.pica,%.psh.h,$(notdir $<)))
+ @picasso -h $(CURH) -o $(CURBIN) $<
+ @bin2s $(CURBIN) | $(AS) -o $@
+ @echo "extern const u8" `(echo $(CURBIN) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_end[];" > `(echo $(CURBIN) | tr . _)`.h
+ @echo "extern const u8" `(echo $(CURBIN) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"[];" >> `(echo $(CURBIN) | tr . _)`.h
+ @echo "extern const u32" `(echo $(CURBIN) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`_size";" >> `(echo $(CURBIN) | tr . _)`.h
+
+-include $(DEPENDS)
+
+#---------------------------------------------------------------------------------
+endif
+#---------------------------------------------------------------------------------
diff --git a/README.md b/README.md
index 24a8af6..4ab6e39 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,4 @@
-# ripex3ds
-Anime for New Nintendo 3DS in Spanish.
+RipEX 3DS
+1. Install the CIA file.
+2. Reboot your New 3ds.
+3. Open the application.
diff --git a/build/RipEX3DS.lst b/build/RipEX3DS.lst
new file mode 100644
index 0000000..89d1780
--- /dev/null
+++ b/build/RipEX3DS.lst
@@ -0,0 +1,2796 @@
+ w __deregister_frame_info
+ w __gnu_Unwind_Find_exidx
+ w __register_frame_info
+ w _ITM_deregisterTMCloneTable
+ w _ITM_registerTMCloneTable
+ w _Jv_RegisterClasses
+00000000 b .LANCHOR2
+00000000 00000401 b __fixedpath
+00000000 b _TLS_MODULE_BASE_
+00000000 a shift
+00000000 a shift
+00000404 b .LANCHOR4
+00000404 00000802 b __utf16path
+00000c08 b .LANCHOR6
+00000c08 00000802 b __utf16path_old.7945
+00100000 a __start__
+00100000 T _start
+00100008 T __service_ptr
+0010000c T __apt_appid
+00100010 T __heap_size
+00100014 T __linear_heap_size
+00100018 T __system_arglist
+0010001c T __system_runflags
+00100020 t startup
+00100058 t ClearMem
+0010006c t ClrLoop
+00100094 T _init
+001000ac 00000080 t std::basic_ostream >& std::endl >(std::basic_ostream >&) [clone .constprop.54]
+0010012c 00000330 T http_download(char const*)
+0010045c T initSystem
+001004a0 T __ctru_exit
+001004c0 t .udivsi3_skip_div0_test
+001004c0 T __aeabi_uidiv
+001004c0 000001ec T __udivsi3
+001006ac 00000020 T __aeabi_uidivmod
+001006cc T __aeabi_idiv
+001006cc 00000220 T __divsi3
+001006d4 t .divsi3_skip_div0_test
+001008ec 00000020 T __aeabi_idivmod
+0010090c 00000004 W __aeabi_idiv0
+0010090c 00000004 W __aeabi_ldiv0
+00100910 T __aeabi_uldivmod
+0010094c 00000014 T __restore_core_regs
+0010094c 00000014 T restore_core_regs
+00100960 T __gnu_Unwind_Restore_VFP
+00100968 T __gnu_Unwind_Save_VFP
+00100970 T __gnu_Unwind_Restore_VFP_D
+00100978 T __gnu_Unwind_Save_VFP_D
+00100980 T __gnu_Unwind_Restore_VFP_D_16_to_31
+00100988 T __gnu_Unwind_Save_VFP_D_16_to_31
+00100990 T __gnu_Unwind_Restore_WMMXD
+001009d4 T __gnu_Unwind_Save_WMMXD
+00100a18 T __gnu_Unwind_Restore_WMMXC
+00100a2c T __gnu_Unwind_Save_WMMXC
+00100a40 00000024 T ___Unwind_RaiseException
+00100a40 00000024 T _Unwind_RaiseException
+00100a64 00000024 T ___Unwind_Resume
+00100a64 00000024 T _Unwind_Resume
+00100a88 00000024 T ___Unwind_Resume_or_Rethrow
+00100a88 00000024 T _Unwind_Resume_or_Rethrow
+00100aac 00000024 T ___Unwind_ForcedUnwind
+00100aac 00000024 T _Unwind_ForcedUnwind
+00100ad0 00000024 T ___Unwind_Backtrace
+00100ad0 00000024 T _Unwind_Backtrace
+00100b08 00000390 T strcmp
+00100e90 t deregister_tm_clones
+00100ec0 t register_tm_clones
+00100ef8 t __do_global_dtors_aux
+00100f3c t frame_dummy
+00100f98 00000008 W std::ctype::do_widen(char) const
+00100fa0 00000228 W void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_emplace_back_aux, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)
+001011c8 00001444 T main
+0010260c 00000060 t _GLOBAL__sub_I__Z7contentB5cxx11
+0010266c 00000018 T consoleSelect
+00102684 000001b0 T consoleDrawChar
+00102834 00000124 T consolePrintChar
+00102958 00000190 t consoleCls
+00102ae8 00000104 T consoleInit
+00102bec 00000144 t consoleClearLine
+00102d30 000000bc t newRow
+00102dec 00000774 T con_write
+00103560 0000000c T consoleClear
+0010356c 0000008c t gfxSetFramebufferInfo.part.0
+001035f8 00000018 T __get_bytes_per_pixel
+00103610 00000180 T gfxSetScreenFormat
+00103790 00000010 T gfxSetDoubleBuffering
+001037a0 00000070 T gfxSetFramebufferInfo
+00103810 000000b0 T gfxWriteFramebufferInfo
+001038c0 0000020c T gfxInit
+00103acc 00000010 T gfxInitDefault
+00103adc 000000e0 T gfxExit
+00103bbc 000000bc T gfxGetFramebuffer
+00103c78 000000e0 T gfxFlushBuffers
+00103d58 00000060 T gfxConfigScreen
+00103db8 00000020 T gfxSwapBuffers
+00103dd8 00000020 T gfxSwapBuffersGpu
+00103df8 00000004 W _aptDebug
+00103dfc 00000138 T aptSendCommand
+00103f34 0000003c t aptExitProcess
+00103f70 0000004c T APT_InquireNotification
+00103fbc 0000019c t aptEventHandler
+00104158 00000074 T APT_AppletUtility
+001041cc 000000b4 T aptSetSleepAllowed
+00104280 000000b4 T APT_GlanceParameter
+00104334 000000c0 T APT_ReceiveParameter
+001043f4 000000bc t aptReceiveParameter.constprop.0
+001044b0 000001ec t aptScreenTransfer
+0010469c 00000228 t aptWaitForWakeUp
+001048c4 00000070 T APT_CancelParameter
+00104934 0000027c T aptInit
+00104bb0 00000090 t aptClearParamQueue
+00104c40 00000210 T aptMainLoop
+00104e50 0000021c T aptExit
+0010506c 0000007c T APT_CheckNew3DS
+001050e8 00000028 T APT_PrepareToStartSystemApplet
+00105110 00000048 T APT_StartSystemApplet
+00105158 00000074 T gspInit
+001051cc 0000003c T gspExit
+00105208 000000a0 T gspInitEventHandler
+001052a8 00000040 T gspExitEventHandler
+001052e8 00000044 T gspWaitForEvent
+0010532c 00000004 W gxCmdQueueInterrupt
+00105330 0000017c t gspEventThreadMain
+001054ac 0000006c T GSPGPU_SetBufferSwap
+00105518 0000004c T GSPGPU_FlushDataCache
+00105564 00000034 T GSPGPU_SetLcdForceBlack
+00105598 00000064 T GSPGPU_RegisterInterruptRelayQueue
+001055fc 0000002c T GSPGPU_UnregisterInterruptRelayQueue
+00105628 00000048 T GSPGPU_AcquireRight
+00105670 0000002c T GSPGPU_ReleaseRight
+0010569c 00000080 T GSPGPU_ImportDisplayCaptureInfo
+0010571c 0000002c T GSPGPU_SaveVramSysArea
+00105748 0000002c T GSPGPU_RestoreVramSysArea
+00105774 000000d0 T hidExit
+00105844 00000268 T hidScanInput
+00105aac 00000010 T hidKeysDown
+00105abc 00000090 T HIDUSER_GetHandles
+00105b4c 000001ac T hidInit
+00105cf8 000001a0 T httpcInit
+00105e98 0000013c T httpcOpenContext
+00105fd4 00000044 T httpcCloseContext
+00106018 00000080 T httpcAddRequestHeaderField
+00106098 00000030 T httpcBeginRequest
+001060c8 00000044 T httpcReceiveData
+0010610c 00000104 T httpcDownloadData
+00106210 00000054 T httpcGetDownloadSizeState
+00106264 00000078 T httpcGetResponseHeader
+001062dc 0000003c T httpcGetResponseStatusCode
+00106318 00000034 T httpcSetSSLOpt
+0010634c 000000ac T irrstScanInput
+001063f8 00000024 T irrstKeysHeld
+0010641c 00000050 T IRRST_GetHandles
+0010646c 0000015c T irrstInit
+001065c8 0000002c T IRRST_Shutdown
+001065f4 000000ac T irrstExit
+001066a0 000000e8 T __system_initArgv
+00106788 00000038 W __libctru_init
+001067c0 00000030 t __ctru_get_reent
+001067f0 000000e4 T __system_initSyscalls
+001068d4 T svcControlMemory
+001068f4 T svcExitProcess
+001068fc T svcCreateThread
+0010691c T svcExitThread
+00106924 T svcSleepThread
+0010692c T svcReleaseMutex
+00106934 T svcCreateEvent
+00106948 T svcSignalEvent
+00106950 T svcClearEvent
+00106958 T svcCreateMemoryBlock
+00106970 T svcMapMemoryBlock
+00106978 T svcUnmapMemoryBlock
+00106980 T svcCreateAddressArbiter
+00106994 T svcArbitrateAddress
+001069ac T svcCloseHandle
+001069b4 T svcWaitSynchronization
+001069bc T svcWaitSynchronizationN
+001069e4 T svcDuplicateHandle
+001069f8 T svcGetSystemTick
+00106a00 T svcGetSystemInfo
+00106a18 T svcConnectToPort
+00106a2c T svcSendSyncRequest
+00106a34 T svcBreak
+00106a3c 00000024 t addrMapNodeComparator(rbtree_node const*, rbtree_node const*)
+00106a60 00000004 t addrMapNodeDestructor(rbtree_node*)
+00106a64 0000013c T linearMemAlign
+00106ba0 00000008 T linearAlloc
+00106ba8 00000050 T linearFree
+00106bf8 00000024 t addrMapNodeComparator(rbtree_node const*, rbtree_node const*)
+00106c1c 00000004 t addrMapNodeDestructor(rbtree_node*)
+00106c20 000000f4 T mappableAlloc
+00106d14 00000050 T mappableFree
+00106d64 00000098 T MemPool::CoalesceRight(MemBlock*)
+00106dfc 00000178 T MemPool::Allocate(MemChunk&, unsigned long, int)
+00106f74 00000100 T MemPool::Deallocate(MemChunk const&)
+00107074 00000024 t addrMapNodeComparator(rbtree_node const*, rbtree_node const*)
+00107098 00000004 t addrMapNodeDestructor(rbtree_node*)
+0010709c 0000012c T vramMemAlign
+001071c8 00000008 T vramAlloc
+001071d0 00000050 T vramFree
+00107220 00000084 T envGetHandle
+001072a4 0000004c T envDestroyHandles
+001072f0 00000058 t getSysTime
+00107348 00000024 T osGetMemRegionUsed
+00107370 000000f4 T __libctru_gtod
+00107464 00000034 T __ctru_speedup_config
+00107498 00000058 T srvExit
+001074f0 00000038 T srvRegisterClient
+00107528 0000007c T srvInit
+001075a4 00000068 T srvGetServiceHandleDirect
+0010760c 00000038 T srvGetServiceHandle
+00107644 00000034 t LightLock_Unlock.part.1
+00107678 0000000c T __sync_init
+00107684 00000018 T __sync_fini
+0010769c 00000010 T __sync_get_arbiter
+001076ac 00000018 T LightLock_Init
+001076c4 000000a0 T LightLock_Lock
+00107764 00000034 T LightLock_TryLock
+00107798 00000020 T LightLock_Unlock
+001077b8 00000024 T RecursiveLock_Init
+001077dc 00000030 T RecursiveLock_Lock
+0010780c 00000058 T RecursiveLock_TryLock
+00107864 00000038 T RecursiveLock_Unlock
+0010789c 00000038 T LightEvent_Init
+001078d4 0000007c T LightEvent_Clear
+00107950 000000dc T LightEvent_Signal
+00107a2c 000000d0 T LightEvent_Wait
+00107afc 0000001c t threadFree.part.0
+00107b18 000001bc T threadCreate
+00107cd4 00000024 T threadJoin
+00107cf8 00000064 T threadExit
+00107d5c 00000040 t _thread_begin
+00107d9c 00000074 T ptmSysmInit
+00107e10 0000003c T ptmSysmExit
+00107e4c 00000034 T PTMSYSM_ConfigureNew3DSCPU
+00107e80 00000070 T rbtree_find
+00107ef0 00000014 T rbtree_init
+00107f04 0000018c t do_insert
+00108090 00000008 T rbtree_insert
+00108098 00000324 T rbtree_remove
+001083bc 00000094 T rbtree_rotate
+00108450 00000058 t osGetMemRegionSize
+001084a8 00000104 W __system_allocateHeaps
+001085ac 0000001c W __appExit
+001085c8 0000001c W __appInit
+001085e4 000000a4 W __libctru_exit
+00108688 00000010 t sdmc_link
+00108698 00000010 t sdmc_dirreset
+001086a8 00000010 t sdmc_fchmod
+001086b8 00000024 t error_cmp
+001086dc 00000050 t sdmc_translate_error
+0010872c 00000034 t sdmc_fsync
+00108760 00000054 t sdmc_ftruncate
+001087b4 000000b8 t sdmc_statvfs
+0010886c 00000038 t sdmc_dirclose
+001088a4 00000138 t sdmc_dirnext
+001089dc 00000034 t sdmc_close
+00108a10 00000074 t sdmc_fstat
+00108a84 000000d8 t sdmc_seek
+00108b5c 00000084 t sdmc_read
+00108be0 000000b8 t sdmc_write
+00108c98 000001ac t sdmc_utf16path
+00108e44 00000074 t sdmc_rmdir
+00108eb8 000000a4 t sdmc_diropen
+00108f5c 000000a0 t sdmc_chdir
+00108ffc 00000098 t sdmc_mkdir
+00109094 00000108 t sdmc_rename
+0010919c 00000074 t sdmc_unlink
+00109210 00000108 t sdmc_stat
+00109318 00000188 t sdmc_open
+001094a0 00000010 t sdmc_chmod
+001094b0 00000160 T sdmcInit
+00109610 00000060 T sdmcExit
+00109670 00000028 t fsSessionForArchive.part.0
+00109698 000000cc T fsInit
+00109764 0000003c T fsExit
+001097a0 000000a0 T fsExemptFromSession
+00109840 00000050 T fsUnexemptFromSession
+00109890 000000bc T FSUSER_OpenFile
+0010994c 000000a4 T FSUSER_DeleteFile
+001099f0 000000e0 T FSUSER_RenameFile
+00109ad0 000000a4 T FSUSER_DeleteDirectory
+00109b74 000000bc T FSUSER_CreateFile
+00109c30 000000ac T FSUSER_CreateDirectory
+00109cdc 000000e0 T FSUSER_RenameDirectory
+00109dbc 000000a4 T FSUSER_OpenDirectory
+00109e60 00000098 T FSUSER_OpenArchive
+00109ef8 00000074 T FSUSER_CloseArchive
+00109f6c 00000078 T FSUSER_GetSdmcArchiveResource
+00109fe4 00000064 T FSUSER_IsSdmcWritable
+0010a048 0000005c T FSFILE_Read
+0010a0a4 00000064 T FSFILE_Write
+0010a108 0000003c T FSFILE_GetSize
+0010a144 0000002c T FSFILE_SetSize
+0010a170 0000003c T FSFILE_Close
+0010a1ac 00000024 T FSFILE_Flush
+0010a1d0 00000054 T FSDIR_Read
+0010a224 0000003c T FSDIR_Close
+0010a260 00000074 T rbtree_node_next
+0010a2d4 00000138 T decode_utf8
+0010a40c 000000e8 T utf16_to_utf8
+0010a4f4 000000c0 T utf8_to_utf16
+0010a5b4 T __aeabi_read_tp
+0010a5c0 00000060 T decode_utf16
+0010a620 00000068 T encode_utf16
+0010a688 00000104 T encode_utf8
+0010a78c 00000004 T operator delete(void*)
+0010a790 0000005c T operator new(unsigned int)
+0010a7ec 00000010 T __aeabi_atexit
+0010a7fc 000000d0 t (anonymous namespace)::pool::free(void*) [clone .constprop.4]
+0010a8cc 000000b8 t (anonymous namespace)::pool::allocate(unsigned int) [clone .constprop.5]
+0010a984 00000044 T __cxa_allocate_exception
+0010a9c8 00000030 T __cxa_free_exception
+0010a9f8 00000040 t _GLOBAL__sub_I__ZN9__gnu_cxx9__freeresEv
+0010aa38 00000534 t std::ios_base::Init::Init() [clone .part.9]
+0010af6c 00000038 T std::ios_base::Init::Init()
+0010af6c 00000038 T std::ios_base::Init::Init()
+0010afa4 00000088 T std::ios_base::Init::~Init()
+0010afa4 00000088 T std::ios_base::Init::~Init()
+0010b02c 00000020 W __gnu_cxx::stdio_sync_filebuf >::~stdio_sync_filebuf()
+0010b02c 00000020 W __gnu_cxx::stdio_sync_filebuf >::~stdio_sync_filebuf()
+0010b04c 00000028 W __gnu_cxx::stdio_sync_filebuf >::~stdio_sync_filebuf()
+0010b074 00000020 W __gnu_cxx::stdio_sync_filebuf >::~stdio_sync_filebuf()
+0010b074 00000020 W __gnu_cxx::stdio_sync_filebuf >::~stdio_sync_filebuf()
+0010b094 00000028 W __gnu_cxx::stdio_sync_filebuf >::~stdio_sync_filebuf()
+0010b0bc 00000018 W __gnu_cxx::stdio_sync_filebuf >::uflow()
+0010b0d4 0000001c W __gnu_cxx::stdio_sync_filebuf >::underflow()
+0010b0f0 00000038 W __gnu_cxx::stdio_sync_filebuf >::pbackfail(int)
+0010b128 00000008 W __gnu_cxx::stdio_sync_filebuf >::sync()
+0010b130 00000008 W __gnu_cxx::stdio_sync_filebuf >::sync()
+0010b138 00000030 W __gnu_cxx::stdio_sync_filebuf >::overflow(int)
+0010b168 00000088 W __gnu_cxx::stdio_sync_filebuf >::seekoff(long long, std::_Ios_Seekdir, std::_Ios_Openmode)
+0010b1f0 00000088 W __gnu_cxx::stdio_sync_filebuf >::seekoff(long long, std::_Ios_Seekdir, std::_Ios_Openmode)
+0010b278 00000018 W __gnu_cxx::stdio_sync_filebuf >::uflow()
+0010b290 00000070 W __gnu_cxx::stdio_sync_filebuf >::xsgetn(wchar_t*, int)
+0010b300 0000001c W __gnu_cxx::stdio_sync_filebuf >::underflow()
+0010b31c 00000038 W __gnu_cxx::stdio_sync_filebuf >::pbackfail(unsigned int)
+0010b354 00000030 W __gnu_cxx::stdio_sync_filebuf >::overflow(unsigned int)
+0010b384 0000004c W __gnu_cxx::stdio_sync_filebuf >::xsputn(wchar_t const*, int)
+0010b3d0 00000014 W __gnu_cxx::stdio_sync_filebuf >::xsputn(char const*, int)
+0010b3e4 00000034 W __gnu_cxx::stdio_sync_filebuf >::xsgetn(char*, int)
+0010b418 000000a4 W __gnu_cxx::stdio_sync_filebuf >::seekpos(std::fpos<_mbstate_t>, std::_Ios_Openmode)
+0010b4bc 000000a4 W __gnu_cxx::stdio_sync_filebuf >::seekpos(std::fpos<_mbstate_t>, std::_Ios_Openmode)
+0010b560 00000018 t std::string::_Rep::_M_dispose(std::allocator const&) [clone .part.0]
+0010b578 0000002c T std::__throw_bad_alloc()
+0010b5a4 0000002c T std::__throw_bad_cast()
+0010b5d0 00000040 T std::__throw_logic_error(char const*)
+0010b610 00000040 T std::__throw_length_error(char const*)
+0010b650 00000078 T std::__throw_out_of_range_fmt(char const*, ...)
+0010b6c8 00000040 T std::__throw_runtime_error(char const*)
+0010b708 0000007c T std::__throw_ios_failure(char const*)
+0010b784 00000038 T std::logic_error::logic_error(char const*)
+0010b784 00000038 T std::logic_error::logic_error(char const*)
+0010b7bc 00000020 T std::length_error::length_error(char const*)
+0010b7bc 00000020 T std::length_error::length_error(char const*)
+0010b7dc 00000020 T std::out_of_range::out_of_range(char const*)
+0010b7dc 00000020 T std::out_of_range::out_of_range(char const*)
+0010b7fc 00000038 T std::runtime_error::runtime_error(char const*)
+0010b7fc 00000038 T std::runtime_error::runtime_error(char const*)
+0010b834 00000020 T std::__cow_string::__cow_string(char const*, unsigned int)
+0010b834 00000020 T std::__cow_string::__cow_string(char const*, unsigned int)
+0010b854 00000004 W std::basic_streambuf >::imbue(std::locale const&)
+0010b858 00000004 W std::basic_streambuf >::setbuf(char*, int)
+0010b85c 00000024 W std::basic_streambuf >::seekoff(long long, std::_Ios_Seekdir, std::_Ios_Openmode)
+0010b880 00000034 W std::basic_streambuf >::seekpos(std::fpos<_mbstate_t>, std::_Ios_Openmode)
+0010b8b4 00000008 W std::basic_streambuf >::sync()
+0010b8bc 00000008 W std::basic_streambuf >::showmanyc()
+0010b8c4 00000008 W std::basic_streambuf >::underflow()
+0010b8cc 00000008 W std::basic_streambuf >::pbackfail(int)
+0010b8d4 00000008 W std::basic_streambuf >::overflow(int)
+0010b8dc 00000004 W std::basic_streambuf >::imbue(std::locale const&)
+0010b8e0 00000004 W std::basic_streambuf >::setbuf(wchar_t*, int)
+0010b8e4 00000024 W std::basic_streambuf >::seekoff(long long, std::_Ios_Seekdir, std::_Ios_Openmode)
+0010b908 00000034 W std::basic_streambuf >::seekpos(std::fpos<_mbstate_t>, std::_Ios_Openmode)
+0010b93c 00000008 W std::basic_streambuf >::sync()
+0010b944 00000008 W std::basic_streambuf >::showmanyc()
+0010b94c 00000008 W std::basic_streambuf >::underflow()
+0010b954 00000008 W std::basic_streambuf >::pbackfail(unsigned int)
+0010b95c 00000008 W std::basic_streambuf >::overflow(unsigned int)
+0010b964 00000020 W std::basic_streambuf >::~basic_streambuf()
+0010b964 00000020 W std::basic_streambuf >::~basic_streambuf()
+0010b984 00000020 W std::basic_streambuf >::~basic_streambuf()
+0010b984 00000020 W std::basic_streambuf >::~basic_streambuf()
+0010b9a4 00000028 W std::basic_streambuf >::~basic_streambuf()
+0010b9cc 00000028 W std::basic_streambuf >::~basic_streambuf()
+0010b9f4 000000b0 W std::basic_streambuf >::xsputn(char const*, int)
+0010baa4 000000c4 W std::basic_streambuf >::xsputn(wchar_t const*, int)
+0010bb68 0000004c W std::basic_streambuf >::uflow()
+0010bbb4 0000004c W std::basic_streambuf >::uflow()
+0010bc00 000000e4 W std::basic_streambuf >::xsgetn(char*, int)
+0010bce4 000000f8 W std::basic_streambuf >::xsgetn(wchar_t*, int)
+0010bddc 00000008 W std::ctype::do_narrow(char, char) const
+0010bde4 0000000c W std::moneypunct::do_decimal_point() const
+0010bdf0 0000000c W std::moneypunct::do_thousands_sep() const
+0010bdfc 0000000c W std::moneypunct::do_frac_digits() const
+0010be08 00000014 W std::moneypunct::do_pos_format() const
+0010be1c 00000014 W std::moneypunct::do_neg_format() const
+0010be30 0000000c W std::moneypunct::do_decimal_point() const
+0010be3c 0000000c W std::moneypunct::do_thousands_sep() const
+0010be48 0000000c W std::moneypunct::do_frac_digits() const
+0010be54 00000014 W std::moneypunct::do_pos_format() const
+0010be68 00000014 W std::moneypunct::do_neg_format() const
+0010be7c 0000000c W std::numpunct::do_decimal_point() const
+0010be88 0000000c W std::numpunct::do_thousands_sep() const
+0010be94 00000008 W std::time_get > >::do_date_order() const
+0010be9c 00000008 W std::messages::do_open(std::string const&, std::locale const&) const
+0010bea4 00000004 W std::messages::do_close(int) const
+0010bea8 00000024 W std::collate::do_hash(char const*, char const*) const
+0010becc 00000070 W std::__moneypunct_cache::~__moneypunct_cache()
+0010becc 00000070 W std::__moneypunct_cache::~__moneypunct_cache()
+0010bf3c 00000070 W std::__moneypunct_cache::~__moneypunct_cache()
+0010bf3c 00000070 W std::__moneypunct_cache::~__moneypunct_cache()
+0010bfac 00000020 W std::money_get > >::~money_get()
+0010bfac 00000020 W std::money_get > >::~money_get()
+0010bfcc 00000020 W std::money_put > >::~money_put()
+0010bfcc 00000020 W std::money_put > >::~money_put()
+0010bfec 00000060 W std::__numpunct_cache::~__numpunct_cache()
+0010bfec 00000060 W std::__numpunct_cache::~__numpunct_cache()
+0010c04c 00000020 W std::num_get > >::~num_get()
+0010c04c 00000020 W std::num_get > >::~num_get()
+0010c06c 00000020 W std::num_put > >::~num_put()
+0010c06c 00000020 W std::num_put > >::~num_put()
+0010c08c 00000020 W std::__timepunct_cache::~__timepunct_cache()
+0010c08c 00000020 W std::__timepunct_cache::~__timepunct_cache()
+0010c0ac 00000020 W std::time_put > >::~time_put()
+0010c0ac 00000020 W std::time_put > >::~time_put()
+0010c0cc 00000020 W std::time_get > >::~time_get()
+0010c0cc 00000020 W std::time_get > >::~time_get()
+0010c0ec 0000001c W std::__moneypunct_cache::~__moneypunct_cache()
+0010c108 0000001c W std::__moneypunct_cache::~__moneypunct_cache()
+0010c124 00000028 W std::money_get > >::~money_get()
+0010c14c 00000028 W std::money_put > >::~money_put()
+0010c174 0000001c W std::__numpunct_cache::~__numpunct_cache()
+0010c190 00000028 W std::num_get > >::~num_get()
+0010c1b8 00000028 W std::num_put > >::~num_put()
+0010c1e0 0000001c W std::__timepunct_cache::~__timepunct_cache()
+0010c1fc 00000028 W std::time_put > >::~time_put()
+0010c224 00000028 W std::time_get > >::~time_get()
+0010c24c 0000001c W std::ctype::do_widen(char const*, char const*, char*) const
+0010c268 00000028 W std::moneypunct::do_grouping() const
+0010c290 00000028 W std::moneypunct::do_curr_symbol() const
+0010c2b8 00000028 W std::moneypunct::do_positive_sign() const
+0010c2e0 00000028 W std::moneypunct::do_negative_sign() const
+0010c308 00000028 W std::moneypunct::do_grouping() const
+0010c330 00000028 W std::moneypunct::do_curr_symbol() const
+0010c358 00000028 W std::moneypunct::do_positive_sign() const
+0010c380 00000028 W std::moneypunct::do_negative_sign() const
+0010c3a8 00000028 W std::numpunct::do_grouping() const
+0010c3d0 00000028 W std::numpunct::do_truename() const
+0010c3f8 00000028 W std::numpunct::do_falsename() const
+0010c420 00000028 W std::messages::~messages()
+0010c420 00000028 W std::messages::~messages()
+0010c448 0000001c W std::messages::~messages()
+0010c464 00000028 W std::collate::~collate()
+0010c464 00000028 W std::collate::~collate()
+0010c48c 00000030 W std::collate::~collate()
+0010c4bc 00000060 W std::__timepunct::~__timepunct()
+0010c4bc 00000060 W std::__timepunct::~__timepunct()
+0010c51c 0000001c W std::__timepunct::~__timepunct()
+0010c538 00000018 t std::string::_Rep::_M_dispose(std::allocator const&) [clone .part.10]
+0010c550 00000140 W std::collate::do_compare(char const*, char const*, char const*, char const*) const
+0010c690 00000040 t std::ctype::widen(char) const [clone .part.24]
+0010c6d0 000001f8 W std::collate::do_transform(char const*, char const*) const
+0010c8c8 000000d4 W std::__convert_from_v(int* const&, char*, int, char const*, ...)
+0010c99c 00000084 W std::ctype::widen(char const*, char const*, char*) const
+0010ca20 0000004c W std::__timepunct::__timepunct(std::__timepunct_cache*, unsigned int)
+0010ca20 0000004c W std::__timepunct::__timepunct(std::__timepunct_cache*, unsigned int)
+0010ca6c 00000068 W std::__timepunct::_M_months(char const**) const
+0010cad4 00000068 W std::__timepunct::_M_months_abbreviated(char const**) const
+0010cb3c 0000003c W std::messages::messages(unsigned int)
+0010cb3c 0000003c W std::messages::messages(unsigned int)
+0010cb78 0000005c W std::ctype const& std::use_facet >(std::locale const&)
+0010cbd4 000002f0 W std::time_get > >::_M_extract_num(std::istreambuf_iterator >, std::istreambuf_iterator >, int&, int, int, unsigned int, std::ios_base&, std::_Ios_Iostate&) const
+0010cec4 0000005c W std::numpunct const& std::use_facet >(std::locale const&)
+0010cf20 000003bc W std::__numpunct_cache::_M_cache(std::locale const&)
+0010d2dc 0000005c W std::num_put > > const& std::use_facet > > >(std::locale const&)
+0010d338 0000005c W std::num_get > > const& std::use_facet > > >(std::locale const&)
+0010d394 0000005c W std::moneypunct const& std::use_facet >(std::locale const&)
+0010d3f0 0000057c W std::__moneypunct_cache::_M_cache(std::locale const&)
+0010d96c 0000005c W std::moneypunct const& std::use_facet >(std::locale const&)
+0010d9c8 0000057c W std::__moneypunct_cache::_M_cache(std::locale const&)
+0010df44 0000005c W std::__timepunct const& std::use_facet >(std::locale const&)
+0010dfa0 0000010c W std::time_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, tm const*, char, char) const
+0010e0ac 00000060 W bool std::has_facet >(std::locale const&)
+0010e10c 00000060 W bool std::has_facet > > >(std::locale const&)
+0010e16c 00000060 W bool std::has_facet > > >(std::locale const&)
+0010e1cc 00000128 W char* std::__add_grouping(char*, char, char const*, unsigned int, char const*, char const*)
+0010e2f4 000000a8 W std::num_put > >::_M_group_float(char const*, unsigned int, char, char const*, char*, char*, int&) const
+0010e39c 0000004c W std::num_put > >::_M_group_int(char const*, unsigned int, char, std::ios_base&, char*, char*, int&) const
+0010e3e8 000001fc W std::__pad >::_S_pad(std::ios_base&, char, char*, char const*, int, int)
+0010e5e4 00000038 W std::num_put > >::_M_pad(char, int, std::ios_base&, char*, char const*, int&) const
+0010e61c 000000a4 W int std::__int_to_char(char*, unsigned long, char const*, std::_Ios_Fmtflags, bool)
+0010e6c0 00000100 W int std::__int_to_char(char*, unsigned long long, char const*, std::_Ios_Fmtflags, bool)
+0010e7c0 000000cc W std::__use_cache >::operator()(std::locale const&) const
+0010e88c 000004b4 W std::ostreambuf_iterator > std::money_put > >::_M_insert(std::ostreambuf_iterator >, std::ios_base&, char, std::string const&) const
+0010ed40 0000004c W std::istreambuf_iterator >::operator++()
+0010ed8c 000000cc W std::__use_cache >::operator()(std::locale const&) const
+0010ee58 000004b4 W std::ostreambuf_iterator > std::money_put > >::_M_insert(std::ostreambuf_iterator >, std::ios_base&, char, std::string const&) const
+0010f30c 000001d8 W std::money_put > >::do_put(std::ostreambuf_iterator >, bool, std::ios_base&, char, long double) const
+0010f4e4 00000064 W std::money_put > >::do_put(std::ostreambuf_iterator >, bool, std::ios_base&, char, std::string const&) const
+0010f548 000000b8 W std::__use_cache >::operator()(std::locale const&) const
+0010f600 0000024c W std::ostreambuf_iterator > std::num_put > >::_M_insert_int(std::ostreambuf_iterator >, std::ios_base&, char, long) const
+0010f84c 0000003c W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, long) const
+0010f888 000001cc W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, bool) const
+0010fa54 000001e4 W std::ostreambuf_iterator > std::num_put > >::_M_insert_int(std::ostreambuf_iterator >, std::ios_base&, char, unsigned long) const
+0010fc38 0000003c W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, unsigned long) const
+0010fc74 00000074 W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, void const*) const
+0010fce8 0000025c W std::ostreambuf_iterator > std::num_put > >::_M_insert_int(std::ostreambuf_iterator >, std::ios_base&, char, long long) const
+0010ff44 0000003c W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, long long) const
+0010ff80 00000204 W std::ostreambuf_iterator > std::num_put > >::_M_insert_int(std::ostreambuf_iterator >, std::ios_base&, char, unsigned long long) const
+00110184 0000003c W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, unsigned long long) const
+001101c0 0000034c W std::ostreambuf_iterator > std::num_put > >::_M_insert_float(std::ostreambuf_iterator >, std::ios_base&, char, char, double) const
+0011050c 0000003c W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, double) const
+00110548 0000034c W std::ostreambuf_iterator > std::num_put > >::_M_insert_float(std::ostreambuf_iterator >, std::ios_base&, char, char, long double) const
+00110894 0000003c W std::num_put > >::do_put(std::ostreambuf_iterator >, std::ios_base&, char, long double) const
+001108d0 00000100 W std::istreambuf_iterator >::equal(std::istreambuf_iterator > const&) const
+001109d0 00000078 W std::istreambuf_iterator >::_M_get() const
+00110a48 000003ac W std::time_get > >::_M_extract_wday_or_month(std::istreambuf_iterator >, std::istreambuf_iterator >, int&, char const**, unsigned int, std::ios_base&, std::_Ios_Iostate&) const
+00110df4 00000150 W std::time_get > >::do_get_weekday(std::istreambuf_iterator >, std::istreambuf_iterator >, std::ios_base&, std::_Ios_Iostate&, tm*) const
+00110f44 00000954 W std::num_get > >::_M_extract_float(std::istreambuf_iterator >, std::istreambuf_iterator >, std::ios_base&, std::_Ios_Iostate&, std::string&) const
+00111898 000008d0 W std::istreambuf_iterator > std::num_get > >::_M_extract_int(std::istreambuf_iterator >, std::istreambuf_iterator